Skip to content

Instantly share code, notes, and snippets.

@pnlybubbles
Created January 21, 2017 09:09
Show Gist options
  • Save pnlybubbles/19b6a51dd614a3207636887951c5710b to your computer and use it in GitHub Desktop.
Save pnlybubbles/19b6a51dd614a3207636887951c5710b to your computer and use it in GitHub Desktop.
もっとつよいのあった→ https://www.npmjs.com/package/pify
module.exports = function promisify(f) {
return (...args) => {
return new Promise((resolve, reject) => {
f(...[...args, (err, data) => {
if (err) {
reject(err);
} else {
resolve(data);
}
}]);
});
};
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment