bind_polyfill.js 220 字节
Newer Older
黛琳ghz's avatar
黛琳ghz 已提交
1 2 3 4 5 6 7 8 9
Function.prototype.bind = Function.prototype.bind || function (target) {
  var self = this;
  return function (args) {
    if (!(args instanceof Array)) {
      args = [args];
    }
    self.apply(target, args);
  };
};