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 just found that having ssl-config as a dependency in our project was (indirectly) causing
console.log(new Set([1, 2, 3]);
to output
Set {}
instead of the expected values. Upgrading the es6-shim dependency to 0.35.3 fixed the issue.
So, it seems like the es6-shim dependency should be upgraded.
Alternatively, I didn't see an obvious requirement to use es6-shim—but it's very possible that I've been using ES6 so long I wouldn't recognize it anyway. Would it be possible to remove the dependency all together?
Thanks! Happy to help with a PR once a direction is decided.
The text was updated successfully, but these errors were encountered:
I'm not sure if this was a conflict with Babel transpilation or their polyfill…either way, I had to remove this module today because of this issue. :-/ Still a good idea for a module, though!
I just found that having
ssl-config
as a dependency in our project was (indirectly) causingto output
instead of the expected values. Upgrading the
es6-shim
dependency to 0.35.3 fixed the issue.So, it seems like the
es6-shim
dependency should be upgraded.Alternatively, I didn't see an obvious requirement to use
es6-shim
—but it's very possible that I've been using ES6 so long I wouldn't recognize it anyway. Would it be possible to remove the dependency all together?Thanks! Happy to help with a PR once a direction is decided.
The text was updated successfully, but these errors were encountered: