Deno.Buffer.prototype.readSync - Deno documentation
method Deno.Buffer.prototype.readSync
Buffer.prototype.readSync(p: Uint8Array): number | null

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

Return Type

number | null