mirror of
https://github.com/denoland/std.git
synced 2024-11-21 20:50:22 +00:00
39c2a4c076
* feat(streams): `new ConcatStreams()` * refactor(streams): new ConcatStream to be a ReadableStream instead - Converted ConcatStream from a TransformStream into a ReadableStream, also now with proper cleaning up if the `.cancel()` method is called. * adjust(streams): ConcatStreams class into function * Adjust(streams): based off comments * adjust(streams): Remove redundant locking * adjust(streams): based off comments * tweaks * fix * tweak * add Leo as co-author Co-authored-by: crowlKats <crowlkats@toaxl.com> --------- Co-authored-by: Asher Gomez <ashersaupingomez@gmail.com> Co-authored-by: crowlKats <crowlkats@toaxl.com>
33 lines
1.2 KiB
TypeScript
33 lines
1.2 KiB
TypeScript
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
|
|
/**
|
|
* Utilities for working with the
|
|
* {@link https://developer.mozilla.org/en-US/docs/Web/API/Streams_API | Streams API}.
|
|
*
|
|
* Includes buffering and conversion.
|
|
*
|
|
* @module
|
|
*/
|
|
|
|
export * from "./buffer.ts";
|
|
export * from "./byte_slice_stream.ts";
|
|
export * from "./concat_readable_streams.ts";
|
|
export * from "./delimiter_stream.ts";
|
|
export * from "./early_zip_readable_streams.ts";
|
|
export * from "./iterate_reader.ts";
|
|
export * from "./limited_bytes_transform_stream.ts";
|
|
export * from "./limited_transform_stream.ts";
|
|
export * from "./merge_readable_streams.ts";
|
|
export * from "./readable_stream_from_reader.ts";
|
|
export * from "./reader_from_iterable.ts";
|
|
export * from "./reader_from_stream_reader.ts";
|
|
export * from "./text_delimiter_stream.ts";
|
|
export * from "./text_line_stream.ts";
|
|
export * from "./to_array_buffer.ts";
|
|
export * from "./to_blob.ts";
|
|
export * from "./to_json.ts";
|
|
export * from "./to_text.ts";
|
|
export * from "./to_transform_stream.ts";
|
|
export * from "./writable_stream_from_writer.ts";
|
|
export * from "./writer_from_stream_writer.ts";
|
|
export * from "./zip_readable_streams.ts";
|