Sha256: 498b851e175061fdfa8cca42040d0cb99688b0cfa683af7d9dfae15000983477

Contents?: true

Size: 720 Bytes

Versions: 23

Compression:

Stored size: 720 Bytes

Contents

if (!Function.prototype.bind) {
  Function.prototype.bind = function (oThis) {
    if (typeof this !== "function") {
      // closest thing possible to the ECMAScript 5 internal IsCallable function
      throw new TypeError("Function.prototype.bind - what is trying to be bound is not callable");
    }

    var aArgs = Array.prototype.slice.call(arguments, 1),
        fToBind = this,
        fNOP = function () {},
        fBound = function () {
          return fToBind.apply(this instanceof fNOP && oThis ? this : oThis,
                               aArgs.concat(Array.prototype.slice.call(arguments)));
        };

    fNOP.prototype = this.prototype;
    fBound.prototype = new fNOP();

    return fBound;
  };
}

Version data entries

23 entries across 23 versions & 1 rubygems

Version Path
pageflow-0.11.4 vendor/assets/javascripts/polyfills/bind.js
pageflow-0.11.3 vendor/assets/javascripts/polyfills/bind.js
pageflow-0.11.2 vendor/assets/javascripts/polyfills/bind.js
pageflow-0.11.1 vendor/assets/javascripts/polyfills/bind.js
pageflow-0.11.0 vendor/assets/javascripts/polyfills/bind.js
pageflow-0.10.0 vendor/assets/javascripts/polyfills/bind.js
pageflow-0.9.2 vendor/assets/javascripts/polyfills/bind.js
pageflow-0.9.1 vendor/assets/javascripts/polyfills/bind.js
pageflow-0.9.0 vendor/assets/javascripts/polyfills/bind.js
pageflow-0.8.2 vendor/assets/javascripts/polyfills/bind.js
pageflow-0.8.1 vendor/assets/javascripts/polyfills/bind.js
pageflow-0.8.0 vendor/assets/javascripts/polyfills/bind.js
pageflow-0.7.2 vendor/assets/javascripts/polyfills/bind.js
pageflow-0.7.1 vendor/assets/javascripts/polyfills/bind.js
pageflow-0.7.0 vendor/assets/javascripts/polyfills/bind.js
pageflow-0.6.0 vendor/assets/javascripts/polyfills/bind.js
pageflow-0.5.0 vendor/assets/javascripts/polyfills/bind.js
pageflow-0.4.0 vendor/assets/javascripts/polyfills/bind.js
pageflow-0.3.0 vendor/assets/javascripts/polyfills/bind.js
pageflow-0.2.1 vendor/assets/javascripts/polyfills/bind.js