Skip to content

Instantly share code, notes, and snippets.

@iddan
Last active February 7, 2017 02:11
Show Gist options
  • Select an option

  • Save iddan/068bf2726313231a7281b4cd16772a02 to your computer and use it in GitHub Desktop.

Select an option

Save iddan/068bf2726313231a7281b4cd16772a02 to your computer and use it in GitHub Desktop.
Promisify
const promisify = func =>
(...args) =>
new Promise((resolve, reject) =>
func(...args, (err, result) =>
err && reject(err) || resolve(result)
)
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment