Skip to content

Latest commit

 

History

History
28 lines (18 loc) · 948 Bytes

README.md

File metadata and controls

28 lines (18 loc) · 948 Bytes

@appgeist/ensure-dir

NPM version License

Utility function to ensure a directory path exists and return a Promise. Uses mkdirp under the hood.

Usage

const ensureDir = require("@appgeist/ensure-dir");

await ensureDir("/folder/to/store/lotsa/files");

@appgeist/ensure-dir should be slightly more efficient than mkdirp-promise because it checks whether the specified path exists before trying to create it.

License

The ISC License.