New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@aarnavtale/decompress-tar

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install
Package was removed
Sorry, it seems this package was removed from the registry

@aarnavtale/decompress-tar

Decompress tar plugin

5.2.1
unpublished
Source
npm
Version published
Weekly downloads
0
Maintainers
1
Weekly downloads
 
Created
Source

@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

Keywords

decompress

FAQs

Package last updated on 20 Feb 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts