update node_modules

This commit is contained in:
bitkarrot
2022-03-21 00:06:21 -07:00
parent a725bca03a
commit c6038ac85d
1156 changed files with 0 additions and 207393 deletions

View File

@@ -1,11 +0,0 @@
'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);
};
};