Skip to main content
Module

std/streams/buffer.ts

Deno standard library
Go to Latest
import * as mod from "https://deno.land/std@0.165.0/streams/buffer.ts";

Classes

A variable-sized buffer of bytes with read() and write() methods.

A transform stream that only transforms from the zero-indexed start and end bytes (both inclusive).

A TransformStream that will only read & enqueue size amount of bytes. This operation is chunk based and not BYOB based, and as such will read more than needed.

A TransformStream that will only read & enqueue size amount of chunks.