Skip to main content
Module

x/iconv_lite/deps.ts>Buffer#keys

Pure JS character encoding conversion
Latest
method Buffer.prototype.keys
Re-export
import { Buffer } from "https://deno.land/x/iconv_lite@v1.0.2/deps.ts";

Creates and returns an iterator of buf keys (indices).

import { Buffer } from 'buffer';

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

for (const key of buf.keys()) {
  console.log(key);
}
// Prints:
//   0
//   1
//   2
//   3
//   4
//   5

Returns

IterableIterator<number>