Skip to main content
Module

x/zipjs/index.js>Initializable

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

Represents an instance used to read or write unknown type of data.

zip.js can handle multiple types of data thanks to a generic API. This feature is based on 2 abstract constructors: Reader and Writer. The classes inheriting from Reader help to read data from a source of data. The classes inheriting from Writer help to write data into a destination.

Methods

optional
init(): Promise<void>

Initializes the instance asynchronously