You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if (!Function.prototype.bind) { // 3
Function.prototype.bind = function (oThis) { // 4
if (typeof this !== "function") { // 5
// closest thing possible to the ECMAScript 5 internal IsCallable function // 6
throw new TypeError("Function.prototype.bind - what is trying to be bound is not callable"); // 7
}
Which is firing because, in my debugger, "typeof this" == Object.
Help! I need your package and I need IE8 support!
The text was updated successfully, but these errors were encountered:
The polyfill begins with this section:
if (!Function.prototype.bind) { // 3
Function.prototype.bind = function (oThis) { // 4
if (typeof this !== "function") { // 5
// closest thing possible to the ECMAScript 5 internal IsCallable function // 6
throw new TypeError("Function.prototype.bind - what is trying to be bound is not callable"); // 7
}
Which is firing because, in my debugger, "typeof this" == Object.
Help! I need your package and I need IE8 support!
The text was updated successfully, but these errors were encountered: