Skip to main content
Deno 2 is finally here 🎉️
Learn more
Module

x/ayonli_jsext/lib.deno.d.ts>Deno.Buffer#bytes

A JavaScript extension package for building strong and modern applications.
Latest
method Deno.Buffer.prototype.bytes
import { Deno } from "https://deno.land/x/ayonli_jsext@v0.9.72/lib.deno.d.ts";
const { Buffer } = Deno;

Returns a slice holding the unread portion of the buffer.

The slice is valid for use only until the next buffer modification (that is, only until the next call to a method like read(), write(), reset(), or truncate()). If options.copy is false the slice aliases the buffer content at least until the next buffer modification, so immediate changes to the slice will affect the result of future reads.

Parameters

optional
options: { copy?: boolean; }

Defaults to { copy: true }

Returns

Uint8Array