Skip to main content
Module

x/servest/vendor/https/deno.land/std/io/buffer.ts>Buffer#readFromSync

🌾A progressive http server for Deno🌾
Latest
method Buffer.prototype.readFromSync
import { Buffer } from "https://deno.land/x/servest@v1.3.4/vendor/https/deno.land/std/io/buffer.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