mirror of https://github.com/masayuki0812/c3.git
Browse Source
Fix Function.prototype.bind polyfill by using Mozillas suggested scriptpull/1069/merge
Masayuki Tanaka
10 years ago
1 changed files with 25 additions and 7 deletions
@ -1,7 +1,25 @@ |
|||||||
// fix problems using c3 with phantomjs #578
|
// PhantomJS doesn't have support for Function.prototype.bind, which has caused confusion. Use
|
||||||
Function.prototype.bind = Function.prototype.bind || function (thisp) { |
// this polyfill to avoid the confusion.
|
||||||
var fn = this; |
// https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Function/bind#Polyfill
|
||||||
return function () { |
|
||||||
return fn.apply(thisp, arguments); |
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 ? this : oThis, aArgs.concat(Array.prototype.slice.call(arguments))); |
||||||
|
}; |
||||||
|
|
||||||
|
fNOP.prototype = this.prototype; |
||||||
|
fBound.prototype = new fNOP(); |
||||||
|
|
||||||
|
return fBound; |
||||||
|
}; |
||||||
|
} |
||||||
|
Loading…
Reference in new issue