deno.land / std@0.173.0 / io / readers.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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.// Based on https://github.com/golang/go/blob/0452f9460f50f0f0aba18df43dc2b31906fb66cc/src/io/io.go// Copyright 2009 The Go Authors. All rights reserved.// Use of this source code is governed by a BSD-style// license that can be found in the LICENSE file.
export { /** * @deprecated (will be removed after 0.172.0) Import from `std/io/string_reader.ts` instead * * Reader utility for strings. * * @example * ```ts * import { StringReader } from "https://deno.land/std@$STD_VERSION/io/mod.ts"; * * const data = new Uint8Array(6); * const r = new StringReader("abcdef"); * const res0 = await r.read(data); * const res1 = await r.read(new Uint8Array(6)); * * // Number of bytes read * console.log(res0); // 6 * console.log(res1); // null, no byte left to read. EOL * * // text * * console.log(new TextDecoder().decode(data)); // abcdef * ``` * * **Output:** * * ```text * 6 * null * abcdef * ``` */ StringReader,} from "./string_reader.ts";
export { /** * @deprecated (will be removed after 0.172.0) Import from `std/io/multi_reader.ts` instead * * Reader utility for combining multiple readers */ MultiReader,} from "./multi_reader.ts";
export { /** * @deprecated (will be removed after 0.172.0) Import from `std/io/limited_reader.ts` instead * * A `LimitedReader` reads from `reader` but limits the amount of data returned to just `limit` bytes. * Each call to `read` updates `limit` to reflect the new amount remaining. * `read` returns `null` when `limit` <= `0` or * when the underlying `reader` returns `null`. */ LimitedReader,} from "./limited_reader.ts";
std

Version Info

Tagged at
a year ago