first commit
This commit is contained in:
7
app_vue/node_modules/axios/lib/helpers/bind.js
generated
vendored
Normal file
7
app_vue/node_modules/axios/lib/helpers/bind.js
generated
vendored
Normal file
@ -0,0 +1,7 @@
|
||||
'use strict';
|
||||
|
||||
export default function bind(fn, thisArg) {
|
||||
return function wrap() {
|
||||
return fn.apply(thisArg, arguments);
|
||||
};
|
||||
}
|
Reference in New Issue
Block a user