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

InflateOptions

Options for decompressing DEFLATE data

interface InflateOptions extends InflateStreamOptions {
out?: Uint8Array;
}

§Extends

§Properties

§
out?: Uint8Array
[src]

The buffer into which to write the decompressed data. Saves memory if you know the decompressed size in advance.

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