Skip to content

Instantly share code, notes, and snippets.

@commenthol
Last active February 26, 2020 13:36
Show Gist options
  • Save commenthol/a8e28768447f64b7fdc411b27349134c to your computer and use it in GitHub Desktop.
Save commenthol/a8e28768447f64b7fdc411b27349134c to your computer and use it in GitHub Desktop.
promisify
const promisify = (fn) => (
(...args) => (
new Promise((resolve, reject) => {
fn(...args, (err, ...res) => {
if (err) reject(err)
else resolve(...res)
})
})
)
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment