Skip to content

Instantly share code, notes, and snippets.

@MOZGIII
Created March 30, 2018 03:56
Show Gist options
  • Save MOZGIII/e8b3571a451852f81e6518c3154bac0f to your computer and use it in GitHub Desktop.
Save MOZGIII/e8b3571a451852f81e6518c3154bac0f to your computer and use it in GitHub Desktop.
const readFile = path =>
new Promise<string>((resolve, reject) =>
fs.readFile(path, (err, data) => {
if (err) {
reject(err);
} else {
resolve(data.toString());
}
})
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment