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

x/dax/src/deps.ts>Buffer#readSync

Cross platform shell tools for Deno inspired by zx.
Very Popular
Go to Latest
method Buffer.prototype.readSync
import { Buffer } from "https://deno.land/x/dax@0.34.0/src/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