mirror of
https://github.com/titanscouting/tra-analysis.git
synced 2025-10-09 12:00:17 +00:00
push all website files
This commit is contained in:
11
website/functions/node_modules/axios/lib/helpers/bind.js
generated
vendored
Normal file
11
website/functions/node_modules/axios/lib/helpers/bind.js
generated
vendored
Normal file
@@ -0,0 +1,11 @@
|
||||
'use strict';
|
||||
|
||||
module.exports = function bind(fn, thisArg) {
|
||||
return function wrap() {
|
||||
var args = new Array(arguments.length);
|
||||
for (var i = 0; i < args.length; i++) {
|
||||
args[i] = arguments[i];
|
||||
}
|
||||
return fn.apply(thisArg, args);
|
||||
};
|
||||
};
|
Reference in New Issue
Block a user