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
I've run into a bug using this library in Internet Explorer (version 11) - inside the isString helper function, the call to toString.call(value) results in a TypeError with message "Invalid calling object". A little experimentation suggests that replacing it with Object.prototype.toString.call(value) should fix the issue.
The text was updated successfully, but these errors were encountered:
I've run into a bug using this library in Internet Explorer (version 11) - inside the isString helper function, the call to
toString.call(value)
results in a TypeError with message "Invalid calling object". A little experimentation suggests that replacing it withObject.prototype.toString.call(value)
should fix the issue.The text was updated successfully, but these errors were encountered: