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

x/proc/legacy/deps.ts>Buffer#readFrom

A better way to work with processes in Deno.
Go to Latest
method Buffer.prototype.readFrom
Re-export
import { Buffer } from "https://deno.land/x/proc@0.20.41/legacy/deps.ts";

Reads data from r until EOF (null) and appends it to the buffer, growing the buffer as needed. It resolves to the number of bytes read. If the buffer becomes too large, .readFrom() will reject with an error.

Based on Go Lang's Buffer.ReadFrom.

Returns

Promise<number>