deep-wine-runner/2048/js/bind_polyfill.js
2023-03-19 15:53:01 +08:00

10 lines
220 B
JavaScript

Function.prototype.bind = Function.prototype.bind || function (target) {
var self = this;
return function (args) {
if (!(args instanceof Array)) {
args = [args];
}
self.apply(target, args);
};
};