1.0.0 • Published 7 years ago

for-each-line v1.0.0

Weekly downloads
2
License
MIT
Repository
github
Last release
7 years ago

for-each-line

Read a text file line by line, calls a callback, returns a promise that is resolved when file is completed

usage

let forEachLine = require('for-each-line');

forEachLine(fileName, (line) => {
  console.log(line);
}).then(() => {
  console.log('Done!')
});

why?

I've been copy-pasting this code over and over, and I got tired of it it. So created this module. It's only 26 lines.

license

MIT

1.0.0

7 years ago