5.2.0-alpha.0 • Published 2 years ago

@xingrz/decompress-tar v5.2.0-alpha.0

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

@xingrz/decompress-tar test

license issues stars commits

@xingrz/decompress .tar plugin.

Install

npm install --save @xingrz/decompress-tar

Usage

import decompress from '@xingrz/decompress';
import decompressTar from '@xingrz/decompress-tar';

(async () => {
	await decompress('unicorn.tar', 'dist', {
		plugins: [
			decompressTar()
		]
	});

	console.log('Files decompressed');
})();

API

decompressTar(): (input: Buffer | Readable) => Promise<File[]>

Returns a Promise<File[]>.

input

Type: Buffer or stream.Readable

Buffer or stream to decompress.

License

MIT License