Skip to main content
Module

x/silicon/deps.ts>io.Buffer#readFrom

Deno module to generate images from source code using Aloxaf/silicon.
Go to Latest
method io.Buffer.prototype.readFrom
Re-export
import { io } from "https://deno.land/x/silicon@v0.0.6/deps.ts";
const { Buffer } = io;

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>