-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
New issue
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
Symbol bug set unconfigure object trigger stack overflow #163
Comments
I don't quite understand what do you mean. I see this problem in IE11 without |
Yep, usage |
There is no solution seems Supplement recommended in the document |
Thanks for the report. Added note about it. |
var Test = Symbol();
var connection = new WebSocket('wss://echo.websocket.org/')
connection[Test] = 'Test'; // stackoverflow for IE 11 (Symbol.useSetter only) check is WebSocket object use Symbol.useSimple ? |
@LiaoSept thanks for the warning. It's a very specific case, I think the note in the readme enough. |
var TestObject = {};
Object.seal(TestObject);
TestObject[Test] = 'Test'; // Cannot define property 'Symbol()_m.*': object is not extensible var TestObject = {};
Object.freeze(TestObject);
TestObject[Test] = 'Test'; // Cannot define property 'Symbol()_m.*': object is not extensible |
@LiaoSept sorry, I missed your comment.
|
The text was updated successfully, but these errors were encountered: