Skip to main content
Module

std/io/buffer.ts>readStringDelim

Deno standard library
Go to Latest
The Standard Library has been moved to JSR. See the blog post for details.
function readStringDelim
import { readStringDelim } from "https://deno.land/std@0.118.0/io/buffer.ts";

Read delimited strings from a Reader.

Parameters

reader: Reader
delim: string
optional
decoderOpts: { encoding?: string; fatal?: boolean; ignoreBOM?: boolean; }

Returns

AsyncIterableIterator<string>