Works with
•JSR Score70%•It is unknown whether this package works with Browsers, Deno, Node.js, Cloudflare Workers, Bun




Published2 years ago (0.215.0)
- @std/streams
readable_stream_from_reader
- all symbols
- default
- buffer
- byte_slice_stream
- delimiter_stream
- early_zip_readable_streams
- iterate_reader
- limited_bytes_transform_stream
- limited_transform_stream
- merge_readable_streams
- readable_stream_from_reader
- reader_from_iterable
- reader_from_stream_reader
- text_delimiter_stream
- text_line_stream
- to_array_buffer
- to_blob
- to_json
- to_text
- to_transform_stream
- writable_stream_from_writer
- writer_from_stream_writer
- zip_readable_streams
Functions
f
readableStreamFromReader(): ReadableStream<Uint8Array>
reader: Reader | (Reader & Closer),
options?: ReadableStreamFromReaderOptions
Create a ReadableStream of Uint8Arrays from a
Reader.
Interfaces
I
- autoClose: boolean
If the
readeris also aCloser, automatically close thereaderwhenEOFis encountered, or a read error occurs. - chunkSize: number
The size of chunks to allocate to read, the default is ~16KiB, which is the maximum size that Deno operations can currently support.
- strategy: { highWaterMark?: number | undefined; size?: undefined; }
The queuing strategy to create the
ReadableStreamwith.