@drupflare/untarl - v0.1.0
    Preparing search index...

    Interface TarEntry

    One archive member. bytes is an owned copy, so the archive buffer can be released.

    interface TarEntry {
        bytes: Uint8Array;
        mode: number;
        name: string;
        size: number;
        type: TarEntryType;
    }
    Index
    bytes: Uint8Array

    the entry's data

    mode: number

    permission bits from the octal mode field; 0 when the field is blank

    name: string

    full path as the archive names it, ustar prefix and GNU long names already resolved

    size: number

    size in bytes

    type of the entry