1 2 3 4 5 6 7 8 9 10
const fs = require('fs'); const path = require('path'); function readFile(filePath) { return fs.readFileSync(path.join(__dirname, filePath), 'utf8'); } module.exports = { readFile };