🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
19 lines
417 B
JavaScript
Executable File
19 lines
417 B
JavaScript
Executable File
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;
|