maleck13 / readline

read line module for node js
93 stars 27 forks source link

Event that fires when the whole file has been read #18

Closed developeron29 closed 8 years ago

developeron29 commented 8 years ago

Just wondering if there is a event that fires when all the lines from the files have been read?

Thanks for the great package!

maleck13 commented 8 years ago

There is an "end" event that is fired when the read stream behind the api emits the end of the stream.

developeron29 commented 8 years ago

Thanks!