inital commit

This commit is contained in:
TheGreydiamond
2025-08-18 20:02:43 +02:00
parent d812e8f4a7
commit 7b45a854fe
1672 changed files with 298536 additions and 1 deletions

16
node_modules/axios/lib/helpers/callbackify.js generated vendored Normal file
View File

@@ -0,0 +1,16 @@
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;