npm.io
1.0.0 • Published 9 years ago

for-each-line

Licence
MIT
Version
1.0.0
Deps
0
Vulns
0
Weekly
0
Stars
3

for-each-line

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

usage

const 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

Keywords