unwrap-dir

1.0.1 • Public • Published

unwrap-dir

unwrap-dir removes top-level wrapping directories.

Build status

install

$ npm install unwrap-dir

example

It’s often the case that you extract an archive and find its contents wrapped in a single directory. unwrap-dir can be used to rectify this annoyance.

some-folder
└─┬ wrapping-folder
  ├── one
  ├── two
  └── three
var unwrap = require('unwrap-dir')
 
unwrap('./some-folder', function (err, unwrapped) {
  console.log(unwrapped)
  > true
})
some-folder
├── one
├── two
└── three

license

MIT

Package Sidebar

Install

npm i unwrap-dir

Weekly Downloads

0

Version

1.0.1

License

MIT

Last publish

Collaborators

  • michaelrhodes