Skip to main content
The Deno 2 Release Candidate is here
Learn more
Module

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

A high-level way to run child processes that is easy, flexible, powerful, and prevents resource leaks.
Go to Latest
method Buffer.prototype.readFromSync
Re-export
import { Buffer } from "https://deno.land/x/proc@0.20.7/legacy/deps.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