VOOZH about

URL: https://www.geeksforgeeks.org/node-js/node-js-stream-readable-readable-property/

⇱ Node.js Stream readable.readable Property - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Node.js Stream readable.readable Property

Last Updated : 12 Oct, 2021
The readable.readable property is an inbuilt application programming interface of Stream module which is used to check if it is safe to call readable.read() method. Syntax:
readable.readable
Return Value: It returns true if readable.read() method is being called otherwise returns false. Below examples illustrate the use of readable.readable property in Node.js: Example 1: Output:
true
Example 2: Output:
Program ends!!
true
read: hello
Reference: https://nodejs.org/api/stream.html#stream_readable_readable
Comment

Explore