-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
runtime: Use [[Define]]
for the Symbol.toStringTag
property
#399
Conversation
I filed #400 which uses a conditional; defineProperty won't work in IE < 9, which is an important target for this package. |
This will work in IE < 9, since it only uses |
Well, PR #400 makes it so that once engines start shipping |
That sounds like the right behavior to me, since that's what the standard will dictate. |
But the |
I'm a bit confused. This change was motivated by a web compat concern, where |
Yes. |
In that case, i think the helper @benjamn added should be modified to conditionally use |
That’s what I’m doing in #402. |
See tc39/proposal-iterator-helpers#115 and Firefox’s Bug 1644581 (comment #6).