Skip to content

Instantly share code, notes, and snippets.

@kettuniko
Created February 4, 2017 17:05
Show Gist options
  • Save kettuniko/19d050cb3be9a33b375fcd795d759150 to your computer and use it in GitHub Desktop.
Save kettuniko/19d050cb3be9a33b375fcd795d759150 to your computer and use it in GitHub Desktop.
module.exports = nodeCallbackFn => (...args) =>
new Promise((resolve, reject) =>
nodeCallbackFn(...args, (err, data) =>
(err ? reject(err) : resolve(data))));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment