0.1.0 • Published 5 years ago

dirdir v0.1.0

Weekly downloads
133
License
MIT
Repository
github
Last release
5 years ago

dirdir npm

Make a directory.

  • always recursive
  • return full path instead of "first directory path created"
  • return null instead of undefined 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