Files
xiaokuaisong-xiaochengxu/uniapp04/node_modules/axios/lib/helpers/bind.js
2025-08-18 14:20:34 +08:00

8 lines
134 B
JavaScript

'use strict';
export default function bind(fn, thisArg) {
return function wrap() {
return fn.apply(thisArg, arguments);
};
}