clean-directory
v1.0.0
Published
A tiny module to clean a directory selecting which files or directories to keep.
Downloads
916
Maintainers
Readme
clean-directory
A tiny module to clean a directory selecting which files or directories to keep.
Install
$ npm install --save clean-directory
Usage
const invert = require('clean-directory');
// empty the directory
clean('/path/to/dir');
// empty the directory keeping a and its contents
clean('/dir', 'a/**');
// multiple patterns are possible
clean('/dir', ['a/**', 'b/**']);
Test and coverage
You just have to clone the repo and run
$ npm test
$ npm run coverage