Skip to content

Latest commit

 

History

History
26 lines (19 loc) · 487 Bytes

readme.md

File metadata and controls

26 lines (19 loc) · 487 Bytes

dleet npm

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

Install

$ yarn add dleet

Usage

import dleet from 'dleet'

dleet('/file/or/directory/path')
  .then(() => console.log('done'))
  .catch(console.error)