Created
April 23, 2016 13:14
(Medium) Why Small Modules Matter - Read The File
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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