Module

x/proc/legacy/deps.ts>BufReader#readString

A better way to work with processes in Deno.
Very Popular
Latest
method BufReader.prototype.readString
import { BufReader } from "https://dotland.deno.dev/x/proc@0.21.9/legacy/deps.ts";

readString() reads until the first occurrence of delim in the input, returning a string containing the data up to and including the delimiter. If ReadString encounters an error before finding a delimiter, it returns the data read before the error and the error itself (often null). ReadString returns err !== null if and only if the returned data does not end in delim. For simple uses, a Scanner may be more convenient.

Parameters

delim: string

Returns

Promise<string | null>