system-prompts-and-models-o.../unified-ai-platform/node_modules/axios/lib/helpers/callbackify.js
dopeuni444 ae726301f8 KI
KJ
2025-08-06 11:08:49 +04:00

17 lines
372 B
JavaScript

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;