La propiedad readable.readable es una interfaz de programación de aplicaciones incorporada del módulo Stream que se utiliza para comprobar si es seguro llamar al método readable.read().
Sintaxis:
readable.readable
Valor devuelto: Devuelve verdadero si se llama al método readable.read(); de lo contrario, devuelve falso.
Los siguientes ejemplos ilustran el uso de la propiedad readable.readable en Node.js:
Ejemplo 1:
// Node.js program to demonstrate the // readable.readable Property // Include fs module const fs = require('fs'); // Creating readable stream const readable = fs.createReadStream("input.txt"); // Calling readable property readable.readable;
Producción:
true
Ejemplo 2:
// Node.js program to demonstrate the // readable.readable Property // Include fs module const fs = require("fs"); // Constructing readable stream const readable = fs.createReadStream("input.txt"); // Instructions for reading data readable.on('readable', () => { let chunk; // Using while loop and calling // read method while (null !== (chunk = readable.read())) { // Displaying the chunk console.log(`read: ${chunk}`); } }); // Shows that the program // ended console.log("Program ends!!"); // Calling readable property readable.readable;
Producción:
Program ends!! true read: hello
Referencia: https://nodejs.org/api/stream.html#stream_readable_readable
Publicación traducida automáticamente
Artículo escrito por nidhi1352singh y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA