@zip.js/zip.js
    Preparing search index...

    Class CodecStream

    Represents a class implementing CompressionStream or DecompressionStream interfaces.

    Hierarchy

    • TransformStream
      • CodecStream
    Index
    • Parameters

      • Optionaltransformer: Transformer<any, any>
      • OptionalwritableStrategy: QueuingStrategy<any>
      • OptionalreadableStrategy: QueuingStrategy<any>

      Returns CodecStream

    readable: ReadableStream<any>

    The readable read-only property of the TransformStream interface returns the ReadableStream instance controlled by this TransformStream. This stream emits the transformed output data.

    MDN Reference

    writable: WritableStream<any>

    The writable read-only property of the TransformStream interface returns the WritableStream instance controlled by this TransformStream. This stream accepts input data that will be transformed and emitted to the readable stream.

    MDN Reference