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

    Interface EntryExtraFieldUnixDates

    Represents a Unix extra field record storing timestamps: the Info-ZIP Unix type 1 extra field (0x5855), written notably by macOS Archive Utility and ditto, or the PKWARE Unix extra field (0x000d). Both store the last access/modification dates as 32-bit Unix times, followed by the optional uid/gid in the local file header.

    interface EntryExtraFieldUnixDates {
        data: Uint8Array;
        gid?: number;
        lastAccessDate?: Date;
        lastModDate?: Date;
        type: number;
        uid?: number;
    }

    Hierarchy (View Summary)

    Index
    data: Uint8Array

    The data of the extra field.

    gid?: number

    The Unix group id.

    lastAccessDate?: Date

    The last access date.

    lastModDate?: Date

    The last modification date.

    type: number

    The type (header id) of the extra field.

    uid?: number

    The Unix user id.