Skip to main content
The Deno 2 Release Candidate is here
Learn more
Module

x/adka/deno.d.ts>Deno.Buffer#read

SSG & SSR: Static site generator and server side rendering using JSX.
Latest
method Deno.Buffer.prototype.read
import { Deno } from "https://deno.land/x/adka@0.1.5/deno.d.ts";
const { Buffer } = Deno;

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 sychronously; it's provided for compatibility with Reader interfaces.

Parameters

p: Uint8Array

Returns

Promise<number | null>