dleet
v2.0.1
Published
Delete directories and files
Downloads
169
Readme
dleet
Delete directories and files. Yet another one of many similar to rm -rf
packages. However:
- no CLI
- no globs
- Promise only API
- Windows errors handling:
- an attempt to fix
EPERM
and retry - an attempt to wait and retry few times on
EBUSY
- an attempt to fix
Install
$ yarn add dleet
Usage
import dleet from 'dleet'
dleet('/file/or/directory/path')
.then(() => console.log('done'))
.catch(console.error)