Files
dmenu-plus-front/public/game2048/js/bind_polyfill.js
T
hamid zarghami 8119203506 add 2048 game
2025-12-09 10:20:15 +03:30

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);
};
};