刘琳琳 97c35fdf0d 航汇HHArome小程序容器演示 2 月之前
..
node_modules 97c35fdf0d 航汇HHArome小程序容器演示 2 月之前
index.js 97c35fdf0d 航汇HHArome小程序容器演示 2 月之前
license 97c35fdf0d 航汇HHArome小程序容器演示 2 月之前
package.json 97c35fdf0d 航汇HHArome小程序容器演示 2 月之前
readme.md 97c35fdf0d 航汇HHArome小程序容器演示 2 月之前

readme.md

decompress-tarbz2 Build Status

tar.bz2 decompress plugin

Install

$ npm install decompress-tarbz2

Usage

const decompress = require('decompress');
const decompressTarbz = require('decompress-tarbz2');

decompress('unicorn.tar.gz', 'dist', {
	plugins: [
		decompressTarbz()
	]
}).then(() => {
	console.log('Files decompressed');
});

API

decompressTarbz()(input)

Returns both a Promise for a Buffer and a Duplex stream.

input

Type: Buffer Stream

Buffer to decompress.

License

MIT © Kevin Mårtensson