Skip to main content
Module

x/zipjs/index.js>Entry

JavaScript library to zip and unzip files in the browser and Deno
Go to Latest
interface Entry
import { type Entry } from "https://deno.land/x/zipjs@v2.4.26/index.js";

Properties

optional
offset: number
filename: string
rawFilename: Uint8Array
filenameUTF8: boolean
directory: boolean
encrypted: boolean
compressedSize: number
uncompressedSize: number
lastModDate: Date
optional
lastAccessDate: Date
optional
creationDate: Date
rawLastModDate: number
optional
rawLastAccessDate: Date
optional
rawCreationDate: Date
comment: string
rawComment: Uint8Array
commentUTF8: boolean
signature: Uint8Array
optional
extraField: Map<number, Uint8Array>
rawExtraField: Uint8Array
zip64: boolean
version: number
versionMadeBy: number
msDosCompatible: boolean
internalFileAttribute: number
externalFileAttribute: number

Methods

optional
getData<Type>(writer: Writer<Type>, options?: EntryGetDataOptions): Promise<Type>