dirdir
v0.1.0
Published
Make a directory
Downloads
311,102
Readme
dirdir
Make a directory.
- always recursive
- return full path instead of "first directory path created"
- return
null
instead ofundefined
when directory already exists
Install
$ yarn add dirdir
Usage
const makeDir: (dirPath: string) => Promise<string | null>
import { makeDir } from 'dirdir'
console.log(prcess.cwd())
// /foo
console.log(
await makeDir('bar/baz')
)
// '/foo/bar/baz'
console.log(
await makeDir('/foo')
)
// null