UNPKG

javascripting

Version:

Learn JavaScript by adventuring around in the terminal.

10 lines (8 loc) 221 B
const fs = require('fs') module.exports = function (filepath) { return fs.readFileSync(filepath, 'utf8') .replace(/&#39;/g, "'") .replace(/&quot;/g, '"') .replace(/&lt;/g, '<') .replace(/&gt;/g, '>') }