Skip to content

Instantly share code, notes, and snippets.

@lenivene
Created January 8, 2020 13:23
Show Gist options
  • Save lenivene/0e3b1cab1ce035e24912025a7e06bd22 to your computer and use it in GitHub Desktop.
Save lenivene/0e3b1cab1ce035e24912025a7e06bd22 to your computer and use it in GitHub Desktop.
var fs = require("fs");
require.extensions[".txt"] = (module, filename) => {
module.exports = fs.readFileSync(filename, "utf8");
};
// Example
const description = require("./description.txt");
console.log("Description >", description");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment