You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
372 B
16 lines
372 B
import utils from "../utils.js"; |
|
|
|
const callbackify = (fn, reducer) => { |
|
return utils.isAsyncFn(fn) ? function (...args) { |
|
const cb = args.pop(); |
|
fn.apply(this, args).then((value) => { |
|
try { |
|
reducer ? cb(null, ...reducer(value)) : cb(null, value); |
|
} catch (err) { |
|
cb(err); |
|
} |
|
}, cb); |
|
} : fn; |
|
} |
|
|
|
export default callbackify;
|
|
|