axios-axios/lib/helpers/bind.js
暴走老七 4c898f8665
don\'t need to transform arguments to array (#4544)
Co-authored-by: Jay <jasonsaayman@gmail.com>
2022-05-09 19:08:57 +02:00

8 lines
137 B
JavaScript

'use strict';
module.exports = function bind(fn, thisArg) {
return function wrap() {
return fn.apply(thisArg, arguments);
};
};