Skip to main content
Deno 2 is finally here 🎉️
Learn more
Module

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

A better way to work with processes in Deno.
Go to Latest
method Buffer.prototype.readSync
Re-export
import { Buffer } from "https://deno.land/x/proc@0.21.5/legacy/deps.ts";

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