summaryrefslogtreecommitdiff
path: root/desktop/node_modules/axios/lib/helpers/callbackify.js
diff options
context:
space:
mode:
authorRaindropsSys <raindrops@equestria.dev>2023-10-27 22:29:56 +0200
committerRaindropsSys <raindrops@equestria.dev>2023-10-27 22:29:56 +0200
commit4d4308c46d4f7801c657cc79d2243e1a81831334 (patch)
treea2e392e0af92b9a3ca3d1b5afb841640276e2294 /desktop/node_modules/axios/lib/helpers/callbackify.js
parent9f9d66afebc59c6c265c4424f7b8fb36d8876541 (diff)
downloadmist-4d4308c46d4f7801c657cc79d2243e1a81831334.tar.gz
mist-4d4308c46d4f7801c657cc79d2243e1a81831334.tar.bz2
mist-4d4308c46d4f7801c657cc79d2243e1a81831334.zip
Updated 32 files, added 279 files, deleted 3 files and renamed 14 files (automated)
Diffstat (limited to 'desktop/node_modules/axios/lib/helpers/callbackify.js')
-rw-r--r--desktop/node_modules/axios/lib/helpers/callbackify.js16
1 files changed, 16 insertions, 0 deletions
diff --git a/desktop/node_modules/axios/lib/helpers/callbackify.js b/desktop/node_modules/axios/lib/helpers/callbackify.js
new file mode 100644
index 0000000..4603bad
--- /dev/null
+++ b/desktop/node_modules/axios/lib/helpers/callbackify.js
@@ -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;