- Joined
- Jan 10, 2017
- Messages
- 348
- Reaction score
- 473
- First Language
- Italian
- Primarily Uses
- RMMZ
A little Node JS question, hoping that someone could help me!
In Ruby we have a method that calls the given block of a stream once for each byte:
https://apidock.com/ruby/IO/each_byte
I'm creating a stream using the fs of Node.js:
There is a method similar to each_byte that can I use?
In Ruby we have a method that calls the given block of a stream once for each byte:
https://apidock.com/ruby/IO/each_byte
Code:
each_byte()
Code:
fs.createReadStream(path)

