View file Arhmobi_esdcms/games/2048/js/bind_polyfill.js

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