El método Buffer.keys() se usa para devolver un objeto iterador, que contiene la clave de cada byte en un objeto de búfer.
Sintaxis:
Buffer.keys()
Parámetros: este método no acepta ningún parámetro.
Valor devuelto: Devuelve un objeto iterador que tiene las claves del búfer.
Ejemplo 1:
// Node.js program to demonstrate the // Buffer.keys() method var buf = Buffer.from('Hello World'); // Read in the iterator object // and return the key number for (index of buf.keys()) { console.log(index); }
Producción:
0 1 2 3 4 5 6 7 8 9
Ejemplo 2:
// Node.js program to demonstrate the // Buffer.keys() method var buf1 = Buffer.from('abc'); var buf2 = Buffer.from('1'); // Read in the first iterator object // and return the key number for(index of buf1.keys()) { console.log(index); } // Read in the first iterator object // and return the key number for(index of buf2.keys()) { console.log(index) }
Producción:
0 1 2 0
Nota: El programa anterior se compilará y ejecutará usando el node index.js
comando.
Referencia: https://nodejs.org/api/buffer.html#buffer_buf_keys
Publicación traducida automáticamente
Artículo escrito por priyanshid1 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA