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

@aarnavtale/decompress-tarzst

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-tarzst

Decompress tar.zst plugin

6.1.0
unpublished
latest
Source
npm
Version published
Maintainers
1
Created
Source

@xingrz/decompress-tarzst test

license issues stars commits

@xingrz/decompress .tar.zst plugin.

Install

npm install --save @xingrz/decompress-tarzst

Usage

import decompress from '@xingrz/decompress';
import decompressTarzst from '@xingrz/decompress-tarzst';

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

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

API

decompressTarzst(): (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