Skip to main content
Module

std/node/stream.ts>Transform

Deno standard library
Go to Latest
class Transform
extends Duplex
Re-export
import { Transform } from "https://deno.land/std@0.166.0/node/stream.ts";

Transform streams are Duplex streams where the output is in some way related to the input. Like all Duplex streams, Transform streams implement both the Readable and Writable interfaces.

Examples of Transform streams include:

  • zlib streams
  • crypto streams

Constructors

new
Transform(opts?: TransformOptions)

Methods

_flush(callback: TransformCallback): void
_transform(
chunk: any,
encoding: BufferEncoding,
callback: TransformCallback,
): void