1
0
forked from sent/waves
waves/public/assets/g/2048-multitask/js/bind_polyfill.js
2025-04-09 17:11:14 -05: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);
};
};