Bakhtina Sofya b84cb877be 1st comm | vor 3 Wochen | |
---|---|---|
.. | ||
node_modules | vor 3 Wochen | |
index.js | vor 3 Wochen | |
license | vor 3 Wochen | |
package.json | vor 3 Wochen | |
readme.md | vor 3 Wochen |
tar.bz2 decompress plugin
$ npm install decompress-tarbz2
const decompress = require('decompress');
const decompressTarbz = require('decompress-tarbz2');
decompress('unicorn.tar.gz', 'dist', {
plugins: [
decompressTarbz()
]
}).then(() => {
console.log('Files decompressed');
});
Returns both a Promise
for a Buffer
and a Duplex stream
.
Type: Buffer
Stream
Buffer to decompress.
MIT © Kevin Mårtensson