Skip to content

Instantly share code, notes, and snippets.

@fauxsaurus
Last active November 28, 2018 21:31
Show Gist options
  • Select an option

  • Save fauxsaurus/267e91b370880bcf83a580b4d06df406 to your computer and use it in GitHub Desktop.

Select an option

Save fauxsaurus/267e91b370880bcf83a580b4d06df406 to your computer and use it in GitHub Desktop.
Callback to promise
function callback2promise(func,...args)
{
return new Promise(function(res,rej)
{
func(...args,(err,data)=>err?rej(err):res(data))
})
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment