Skip to main content
Module

x/sdeno/deps.ts>Buffer#values

Steno on Deno. Specialized fast async file writer.
Go to Latest
method Buffer.prototype.values
Re-export
import { Buffer } from "https://deno.land/x/sdeno@v1.0.5/deps.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>