We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Out of stack space in IE11 when trying to add sympol-keyed property to XHR instance
When trying to set some property on XMLHttpRequest instance with Symbol as property key, IE11 throws Out of stack space exception.
Here is simple reproducible test case
<script type="text/javascript" src="https://raw.githack.com/zloirock/core-js/v2.5.1/client/shim.min.js"></script> <script type="text/javascript"> var ctxSymbol = Symbol('smbl'); var xhrInstanceUnderTest = new XMLHttpRequest(); xhrInstanceUnderTest[ctxSymbol] = 'hello'; </script>
Error occurs in core-js/modules/es6.symbol.js $set (inside of if (!USE_NATIVE)) goes into infinite recursion
core-js/modules/es6.symbol.js
if (!USE_NATIVE)
The text was updated successfully, but these errors were encountered:
Looks like a duplicate of #163
Sorry, something went wrong.
You can see a note about possible problems with environment exotic objects in the caveats section of README. If you have some ideas how to fix it - feel free to add a PR.
No branches or pull requests
Out of stack space in IE11 when trying to add sympol-keyed property to XHR instance
When trying to set some property on XMLHttpRequest instance with Symbol as property key, IE11 throws Out of stack space exception.
Here is simple reproducible test case
Error occurs in
core-js/modules/es6.symbol.js
$set (inside ofif (!USE_NATIVE)
) goes into infinite recursionThe text was updated successfully, but these errors were encountered: