Skip to content

Instantly share code, notes, and snippets.

@styfle
Created May 10, 2017 01:40
Show Gist options
  • Save styfle/ac4e108eba98000c196f4229ae30f2cd to your computer and use it in GitHub Desktop.
Save styfle/ac4e108eba98000c196f4229ae30f2cd to your computer and use it in GitHub Desktop.
Promises in Node.js 8.x Core
function requirePromise(modName, fnName) {
return require('util').promisify(require(modName)[fnName]);
}
const stat = requirePromise('fs', 'stat');
const writeFile = requirePromise('fs', 'writeFile');
const appendFile = requirePromise('fs', 'appendFile');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment