Skip to content

Instantly share code, notes, and snippets.

@kevinfelisilda
Created July 3, 2017 01:54
Show Gist options
  • Save kevinfelisilda/fcd6cefb15fa70754fafe9c14dd418c2 to your computer and use it in GitHub Desktop.
Save kevinfelisilda/fcd6cefb15fa70754fafe9c14dd418c2 to your computer and use it in GitHub Desktop.
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