Files
2048/js/bind_polyfill.js
Gabriele Cirulli cf01ca7e8b manually apply #81
2014-03-23 19:51:29 +01: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);
};
};