pako - v3.0.1
    Preparing search index...

    Interface InflateOptions

    interface InflateOptions {
        windowBits?: number;
        dictionary?: ArrayBuffer | Uint8Array<ArrayBufferLike>;
        chunkSize?: number;
        raw?: boolean;
    }
    Index

    zlib options

    Extensions

    zlib options

    windowBits?: number

    Window size. See the zlib manual for more information.

    dictionary?: ArrayBuffer | Uint8Array<ArrayBufferLike>

    Initial dictionary. See the zlib manual for more information.

    Extensions

    chunkSize?: number

    Size of generated data chunks (64K by default).

    raw?: boolean

    Do raw inflate. Say that we work with raw stream, if you don't wish to specify negative windowBits implicitly.