6 lines
159 B
JavaScript
6 lines
159 B
JavaScript
import { readFile } from "fs";
|
|
|
|
readFile("email_list.txt", "utf8", (error, text) => {
|
|
if (error) console.log(error.message);
|
|
else console.log(text);
|
|
}); |