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

    Interface GetEntriesOptions

    Represents options passed to the constructor of ZipReader, ZipReader#getEntries and ZipReader#getEntriesGenerator.

    interface GetEntriesOptions {
        commentEncoding?: string;
        filenameEncoding?: string;
        decodeText(value: Uint8Array<ArrayBuffer>, encoding: string): string;
    }

    Hierarchy (View Summary)

    Index

    Properties

    commentEncoding?: string

    The encoding of the comment of the entry.

    filenameEncoding?: string

    The encoding of the filename of the entry.

    Methods

    • The function called for decoding the filename and the comment of the entry.

      Parameters

      • value: Uint8Array<ArrayBuffer>

        The raw text value.

      • encoding: string

        The encoding of the text.

      Returns string

      The decoded text value or undefined if the raw text value should be decoded by zip.js.