Open rauschma opened 2 years ago
Throughout the streams chapters, it seems that Readable and Writable streams often are switched incorrectly.
For instance, here we see process.stdout is an instance of stream.Readable
, and here we have process.stdin is an instance of stream.Writable
.
Likewise, ReadableStreams and WritableStreams are interchanged in Ch 10.
Or via
console.warn()
. This was a surprise for me.