Module

x/zipjs/index.js>WorkerConfiguration

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

Represents configuration passed to configure, the constructor of ZipReader, {@link Entry#getData}, the constructor of ZipWriter, and {@link ZipWriter#add}.

Properties

optional
useWebWorkers: boolean

true to use web workers to compress/decompress data in non-blocking background processes.

optional
useCompressionStream: boolean

true to use the native API CompressionStream/DecompressionStream to compress/decompress data.