function readLinesimport { readLines } from "https://dotland.deno.dev/std@0.181.0/io/read_lines.ts"; readLines(reader: Reader, decoderOpts?: { encoding?: string; fatal?: boolean; ignoreBOM?: boolean; }): AsyncIterableIterator<string>Read strings line-by-line from a Reader. ExamplesExample 1 import { readLines } from "https://deno.land/std@0.181.0/io/read_lines.ts"; import * as path from "https://deno.land/std@0.181.0/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); } Parametersreader: ReaderoptionaldecoderOpts: { encoding?: string; fatal?: boolean; ignoreBOM?: boolean; }ReturnsAsyncIterableIterator<string>