tvbox_config/open/node_modules/axios/lib/helpers/bind.js
liushiquan 36ab603d34 init
2024-06-01 22:41:46 +08:00

8 lines
134 B
JavaScript

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