deno.land / std@0.177.1 / io / mod.ts

نووسراو ببینە
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// Copyright 2018-2023 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_n.ts";export * from "./limited_reader.ts";export * from "./multi_reader.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";
std

Version Info

Tagged at
10 months ago