unthenify
v2.0.0
Published
Callbackify a promise function. The logical reverse of `thenify`.
Downloads
15
Maintainers
Readme
Un-thenify
Callbackify a promise function. The logical reverse of
thenify
.
Installation
npm install unthenify --save
Usage
Wrap a function that usually returns a promise to accept callbacks.
import { unthenify } from 'unthenify'
const handler = unthenify(async function (payload) {
// Do something...
return true
})
// Use with callback-style.
handler({}, function (err, result) {
console.log(err, result) //=> undefined, true
})
License
Apache 2.0