Skip to content

Latest commit

 

History

History
21 lines (16 loc) · 532 Bytes

README.md

File metadata and controls

21 lines (16 loc) · 532 Bytes

readlineq

read or write file by lines with promise.

var readlineq = require('readlineq');
# read lines with Promise
var lines = await readlineq('./tmp/stopwords.txt');
// console.log(lines);

# write lines which is sync by default
readlineq('./tmp/test.txt', ["foo\n", "bar\n"]);
// console.log(lines);

LICENSE

MIT

chatoper banner