std/streams/mod.ts
2022-08-11 21:51:20 +10:00

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";