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

x/dax/src/deps.ts>Buffer#readFrom

Cross platform shell tools for Deno inspired by zx.
Very Popular
Go to Latest
method Buffer.prototype.readFrom
import { Buffer } from "https://deno.land/x/dax@0.34.0/src/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.

Parameters

r: Reader

Returns

Promise<number>