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

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

🦕 Deno module to support msgpack-rpc
Go to Latest
method io.Buffer.prototype.readSync
Re-export
import { io } from "https://deno.land/x/msgpack_rpc@v3.1.6/deps.ts";
const { Buffer } = io;

Reads the next p.length bytes from the buffer or until the buffer is drained. Returns the number of bytes read. If the buffer has no data to return, the return is EOF (null).

Parameters

p: Uint8Array

Returns

number | null