Skip to main content
Module

std/io/mod.ts>Buffer#readFromSync

Deno standard library
Go to Latest
method Buffer.prototype.readFromSync
Re-export
import { Buffer } from "https://deno.land/std@0.101.0/io/mod.ts";

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

Based on Go Lang's Buffer.ReadFrom.

Returns

number