Skip to main content
Module

x/oak/test_deps.ts>Buffer#readFromSync

A middleware framework for handling HTTP with Deno 🐿️ 🦕
Extremely Popular
Go to Latest
method Buffer.prototype.readFromSync
import { Buffer } from "https://deno.land/x/oak@v10.6.0/test_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.

Parameters

r: ReaderSync

Returns

number