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

GunzipOptions

Options for decompressing GZIP data

interface GunzipOptions extends InflateStreamOptions {
out?: Uint8Array;
}

§Extends

§Properties

§
out?: Uint8Array
[src]

The buffer into which to write the decompressed data. GZIP already encodes the output size, so providing this doesn't save memory.

Note that if the decompression result is larger than the size of this buffer, it will be truncated to fit.