Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

decompressSync

Expands compressed GZIP, Zlib, or raw DEFLATE data, automatically detecting the format

function decompressSync(data: Uint8Array, opts?: InflateOptions): Uint8Array;
§
decompressSync(data: Uint8Array, opts?: InflateOptions): Uint8Array
[src]

§Parameters

§
data: Uint8Array
[src]

The data to decompress

§
opts?: InflateOptions optional
[src]

The decompression options

§Return Type

§
Uint8Array
[src]

The decompressed version of the data