deno.land / std@0.177.1 / io / read_lines.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
// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
import { type Reader } from "../types.d.ts";import { BufReader } from "./buf_reader.ts";import { concat } from "../bytes/concat.ts";
/** * Read strings line-by-line from a Reader. * * @example * ```ts * import { readLines } from "https://deno.land/std@$STD_VERSION/io/read_lines.ts"; * import * as path from "https://deno.land/std@$STD_VERSION/path/mod.ts"; * * const filename = path.join(Deno.cwd(), "std/io/README.md"); * let fileReader = await Deno.open(filename); * * for await (let line of readLines(fileReader)) { * console.log(line); * } * ``` */export async function* readLines( reader: Reader, decoderOpts?: { encoding?: string; fatal?: boolean; ignoreBOM?: boolean; },): AsyncIterableIterator<string> { const bufReader = new BufReader(reader); let chunks: Uint8Array[] = []; const decoder = new TextDecoder(decoderOpts?.encoding, decoderOpts); while (true) { const res = await bufReader.readLine(); if (!res) { if (chunks.length > 0) { yield decoder.decode(concat(...chunks)); } break; } chunks.push(res.line); if (!res.more) { yield decoder.decode(concat(...chunks)); chunks = []; } }}
std

Version Info

Tagged at
10 months ago