Skip to main content
Module

std/streams/mod.ts

Deno standard library
Go to Latest
File
// 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";