Skip to main content
Module

x/zipjs/index.js>Writer

JavaScript library to zip and unzip files supporting multi-core compression, compression streams, Zip64 and encryption.
Go to Latest
class Writer
implements DataProcessor, WritableWriter
import { Writer } from "https://deno.land/x/zipjs@v2.6.13/index.js";

Represents a Writer instance used to write any type of data.

Example: Custom Writer class used to write binary strings.

class BinaryStringWriter extends Writer {

  constructor() {
    super();
    this.binaryString = "";
  }

  writeUint8Array(array) {
    super.writeUint8Array(array);
    for (let indexCharacter = 0; indexCharacter < array.length; indexCharacter++) {
      this.binaryString += String.fromCharCode(array[indexCharacter]);
    }
  }

  getData() {
    return this.binaryString;
  }
}

Properties

size: number

The total size of the data in bytes.

writable: WritableStream

The WritableStream instance.

Methods

getData(): Promise<Type>

Retrieves all the written data

optional
init(): Promise<void>

Initializes the instance asynchronously

writeUint8Array(array: Uint8Array): Promise<void>

Appends a chunk of data