Welcome to mirror list, hosted at ThFree Co, Russian Federation.

before.js « unit « tests « ng-dialog « node_modules - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 333656e31159da9a8d31d38299c519ba586c8533 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
if (typeof Function.prototype.bind != 'function') {
  Function.prototype.bind = function bind(obj) {
    var args = Array.prototype.slice.call(arguments, 1),
    self = this,
    nop = function() {
    },
    bound = function() {
      return self.apply(
          this instanceof nop ? this : (obj || {}), args.concat(
            Array.prototype.slice.call(arguments)
            )
          );
    };
    nop.prototype = this.prototype || {};
    bound.prototype = new nop();
    return bound;
  };
}