Skip to main content
Module

x/clippy/deps.ts>Buffer#read

cross-platform Deno module for writing and reading clipboard.
Go to Latest
method Buffer.prototype.read
import { Buffer } from "https://deno.land/x/clippy@v0.2.1/deps.ts";

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

NOTE: This methods reads bytes synchronously; it's provided for compatibility with Reader interfaces.

Parameters

p: Uint8Array

Returns

Promise<number | null>