mirror of
https://github.com/denoland/std.git
synced 2024-11-22 04:59:05 +00:00
34 lines
1.0 KiB
TypeScript
34 lines
1.0 KiB
TypeScript
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
|
|
|
|
/**
|
|
* Utilities for working with Deno's readers, writers, and web streams.
|
|
*
|
|
* `Reader` and `Writer` interfaces are deprecated in Deno, and so many of these
|
|
* utilities are also deprecated. Consider using web streams instead.
|
|
*
|
|
* @module
|
|
*/
|
|
|
|
export * from "./buf_reader.ts";
|
|
export * from "./buf_writer.ts";
|
|
export * from "./buffer.ts";
|
|
export * from "./copy.ts";
|
|
export * from "./copy_n.ts";
|
|
export * from "./limited_reader.ts";
|
|
export * from "./multi_reader.ts";
|
|
export * from "./read_all.ts";
|
|
export * from "./read_delim.ts";
|
|
export * from "./read_int.ts";
|
|
export * from "./read_lines.ts";
|
|
export * from "./read_long.ts";
|
|
export * from "./read_range.ts";
|
|
export * from "./read_short.ts";
|
|
export * from "./read_string_delim.ts";
|
|
export * from "./slice_long_to_bytes.ts";
|
|
export * from "./string_reader.ts";
|
|
export * from "./string_writer.ts";
|
|
export * from "./to_readable_stream.ts";
|
|
export * from "./to_writable_stream.ts";
|
|
export * from "./types.ts";
|
|
export * from "./write_all.ts";
|