1.0.1 • Published 9 years ago

unwrap-dir v1.0.1

Weekly downloads
2
License
MIT
Repository
github
Last release
9 years ago

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