import { LimitedBytesTransformStream } from "https://deno.land/std@0.219.1/streams/mod.ts";
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.
If options.error
is set, then instead of terminating the stream,
an error will be thrown.
Examples
Example 1
Example 1
import { LimitedBytesTransformStream } from "https://deno.land/std@0.219.1/streams/limited_bytes_transform_stream.ts";
const res = await fetch("https://example.com");
const parts = res.body!
.pipeThrough(new LimitedBytesTransformStream(512 * 1024));