mirror of
https://github.com/denoland/std.git
synced 2024-11-21 20:50:22 +00:00
15 lines
375 B
TypeScript
15 lines
375 B
TypeScript
// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
|
|
/**
|
|
* Utilities for working with the
|
|
* [Streams API](https://developer.mozilla.org/en-US/docs/Web/API/Streams_API).
|
|
*
|
|
* Includes buffering and conversion.
|
|
*
|
|
* @module
|
|
*/
|
|
|
|
export * from "./buffer.ts";
|
|
export * from "./conversion.ts";
|
|
export * from "./delimiter.ts";
|
|
export * from "./merge.ts";
|