class LimitedBytesTransformStream
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 "@std/streams/limited_bytes_transform_stream"; const res = await fetch("https://example.com"); const parts = res.body! .pipeThrough(new LimitedBytesTransformStream(512 * 1024));