📁 File Manager Pro
v10.0.3 | PHP: 8.2.31
Server: LiteSpeed
2026-07-02 03:09:52
📂
/ (Root)
/
home
/
orkouolp
/
web
/
testing.orkobd
/
laravel
/
node_modules
/
axios
/
lib
/
helpers
📍 /home/orkouolp/web/testing.orkobd/laravel/node_modules/axios/lib/helpers
🔄 Refresh
✏️
Editing: callbackify.js
Writable
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;
💾 Save Changes
❌ Cancel