Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/msgpack_rpc/deps.ts>io.Buffer#readFromSync

🦕 Deno module to support msgpack-rpc
Go to Latest
method io.Buffer.prototype.readFromSync
Re-export
import { io } from "https://deno.land/x/msgpack_rpc@v3.1.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 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