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

    Interface IsZipFileOptions

    Represents the options passed to isZipFile.

    interface IsZipFileOptions {
        maxAppendedDataSize?: number;
        strictness?: "balanced" | "strict" | "tolerant";
    }
    Index
    maxAppendedDataSize?: number

    The maximum number of bytes tolerated after the end of central directory record, overriding the default selected by IsZipFileOptions#strictness, with the same semantics as ZipReaderConstructorOptions#maxAppendedDataSize.

    strictness?: "balanced" | "strict" | "tolerant"

    The tolerance of the probe, with the same semantics and default as ZipReaderConstructorOptions#strictness: it selects the default amount of tolerated appended data (0 for "strict", 65536 bytes for "balanced", unlimited for "tolerant") and "strict" also returns false when multiple end of central directory records reach the end of the data.

    "balanced"