Created
July 3, 2017 01:54
-
-
Save kevinfelisilda/fcd6cefb15fa70754fafe9c14dd418c2 to your computer and use it in GitHub Desktop.
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
var promise = require('promisejs'); | |
var fs = require('fs'); | |
function readFile(file) { | |
return promise(function (resolve, reject){ | |
fs.readFile(function (err, data) { | |
if (err) { | |
reject(err); | |
} else { | |
resolve(data); | |
} | |
); | |
}); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment