UNPKG

console-fun

Version:

Some stuff in the console: utils, printing, games and other fun

10 lines (7 loc) 231 B
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 };