Skip to content

Instantly share code, notes, and snippets.

@FagnerMartinsBrack
Created April 23, 2016 13:14
(Medium) Why Small Modules Matter - Read The File
const promisify = require("bluebird").promisify;
const promiseToReadFile = promisify(require("fs").readFile);
module.exports = function readFile(fileName) {
return promiseToReadFile(fileName, "UTF-8");
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment