Skip to content

Instantly share code, notes, and snippets.

@PantherHawk
Created March 4, 2017 05:08
Show Gist options
  • Save PantherHawk/f0d136f6cde35b7905adebc06e547305 to your computer and use it in GitHub Desktop.
Save PantherHawk/f0d136f6cde35b7905adebc06e547305 to your computer and use it in GitHub Desktop.
fetchFile = (filePath) => {
return new Promise((resolve, reject) => {
readFile(filePath, (err, contents) => {
if (err) { return reject(err); }
});
resolve(contents);
}).then();
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment