@zip.js/zip.js
    Preparing search index...

    Interface CreateReadableOptions

    Represents the options passed to Reader#createReadable.

    interface CreateReadableOptions {
        chunkSize?: number;
        offset?: number;
        size?: number;
    }
    Index
    chunkSize?: number

    The size in bytes of the chunks emitted by the default implementation (the chunkSize value of the global configuration by default).

    It is normalized like Configuration#chunkSize.

    offset?: number

    The byte offset of the start of the range to read.

    0
    
    size?: number

    The size of the range to read in bytes (until the end of the data by default).