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