0.0.3 • Published 6 years ago

mkdirp-sync v0.0.3

Weekly downloads
848
License
MIT
Repository
-
Last release
6 years ago

mkdirp-sync

mkdir -p sync in node.js

Install

npm install mkdirp-sync --save
yarn add mkdirp-sync

Usage

const mkdir = require('mkdirp-sync');
mkdir('foo/bar/baz');

folders are created as follows, same as running fs.mkdirSync recursively.

|____foo
| |____bar
| | |____baz

License

MIT