Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

std/io/mod.ts>readStringDelim

Deno standard library
Go to Latest
function readStringDelim
import { readStringDelim } from "https://deno.land/std@0.121.0/io/mod.ts";

Read delimited strings from a Reader.

Parameters

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

Returns

AsyncIterableIterator<string>