Skip to content

Instantly share code, notes, and snippets.

@huttj
Last active April 10, 2016 01:23
Show Gist options
  • Save huttj/2112082398dc3adddee11680288b24a6 to your computer and use it in GitHub Desktop.
Save huttj/2112082398dc3adddee11680288b24a6 to your computer and use it in GitHub Desktop.
'use strict';
module.exports = function nodePromise(fn) {
return new Promise((resolve, reject) => {
fn((err, res) => err ? reject(err) : resolve(res));
});
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment