Skip to content

Instantly share code, notes, and snippets.

@cyan33
Last active November 3, 2017 16:06
Show Gist options
  • Save cyan33/d93a33466b8a15fe2f098b668b01a723 to your computer and use it in GitHub Desktop.
Save cyan33/d93a33466b8a15fe2f098b668b01a723 to your computer and use it in GitHub Desktop.
tiny promisify
function promisify(fn) {
return function(...args) {
return new Promise((res, rej) => {
fn(...args, function() {
res(arguments)
})
})
}
}
// this could be retrieved in nodejs by
// const { promisify } = require('util')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment