Skip to main content
Module

std/node/buffer.ts>Buffer#values

Deno standard library
Go to Latest
method Buffer.prototype.values
import { Buffer } from "https://deno.land/std@0.145.0/node/buffer.ts";

Creates and returns an iterator for buf values (bytes). This function is called automatically when a Buffer is used in a for..of statement.

import { Buffer } from 'buffer';

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

for (const value of buf.values()) {
  console.log(value);
}
// Prints:
//   98
//   117
//   102
//   102
//   101
//   114

for (const value of buf) {
  console.log(value);
}
// Prints:
//   98
//   117
//   102
//   102
//   101
//   114

Returns

IterableIterator<number>