npm.io
1.0.1 • Published 11 years ago

unwrap-dir

Licence
MIT
Version
1.0.1
Deps
5
Vulns
0
Weekly
0

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

Keywords