Module

std/io/mod.ts>Buffer#readSync

The Deno Standard Library
Latest
method Buffer.prototype.readSync
import { Buffer } from "https://dotland.deno.dev/std@0.224.0/io/mod.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