Buffer.entries - Node documentation
method Buffer.entries

Usage in Deno

import { type Buffer } from "node:buffer";
Buffer.entries(): IterableIterator<[number, number]>

Creates and returns an iterator of [index, byte] pairs from the contents of buf.

import { Buffer } from 'node:buffer';

// Log the entire contents of a `Buffer`.

const buf = Buffer.from('buffer');

for (const pair of buf.entries()) {
  console.log(pair);
}
// Prints:
//   [0, 98]
//   [1, 117]
//   [2, 102]
//   [3, 102]
//   [4, 101]
//   [5, 114]

Return Type

IterableIterator<[number, number]>