mkdirsp
v1.0.1
Published
create folders on async with promise
Downloads
5
Readme
mkdirs
create folders on async with promise
usage
install with npm
$ npm install mkdirspcall method like :
var mkdirsp = require('mkdirsp');
mkdirsp('/home/web/upload').then(function(){
console.log('create success');
}).catch(function(e){
console.log(e);
});
