UNPKG
console-fun
Version:
latest (4.0.0)
4.0.0
3.1.0
3.0.0
2.2.0
2.1.0
2.0.0
1.0.1
1.0.0
Some stuff in the console: utils, printing, games and other fun
console-fun
/
source
/
printing
/
read-file.js
10 lines
(7 loc)
•
231 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
import
fs
from
"fs"
;
import
{ lineByLine }
from
"./line-by-line"
;
const
readFileLineByLine
= (
file, options = {}
) => {
const
text = fs.
readFileSync
(file,
"utf-8"
);
lineByLine
(text, options); };
export
{ readFileLineByLine };