Skip to main content
Module

x/zipjs/index.js>ZipReaderOptions

JavaScript library to zip and unzip files supporting multi-core compression, compression streams, zip64, split files and encryption.
Go to Latest
interface ZipReaderOptions
import { type ZipReaderOptions } from "https://deno.land/x/zipjs@v2.7.42/index.js";

Represents options passed to the constructor of ZipReader and Entry#getData.

Properties

optional
checkSignature: boolean

true to check the signature of the entry.

optional
password: string

The password used to decrypt the content of the entry.

optional
rawPassword: Uint8Array

The password used to encrypt the content of the entry (raw).

optional
signal: AbortSignal

The AbortSignal instance used to cancel the decompression.

optional
preventClose: boolean

true to prevent closing of Writer#writable when calling Entry#getData.

optional
transferStreams: boolean

true to transfer streams to web workers when decompressing data.