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
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.
I just found that having
ssl-configas a dependency in our project was (indirectly) causingto output
instead of the expected values. Upgrading the
es6-shimdependency to 0.35.3 fixed the issue.So, it seems like the
es6-shimdependency 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.