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

x/enviromodder/setup/deps.ts>io.Buffer#read

MapLock is a module for remapper which is definitely not a nootils clone :)
Latest
method io.Buffer.prototype.read
Re-export
import { io } from "https://deno.land/x/enviromodder@1.0.6/setup/deps.ts";
const { Buffer } = io;

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>