symbol-es6
symbol-es6 copied to clipboard
:snowman: ES6 Symbol polyfill in pure ES5
Results
3
symbol-es6 issues
Sort by
recently updated
recently updated
newest added
```js const map = new Map().set("a", 1).set("b", 2).set(983, true); console.log(Array.from(map.keys())); // output -> [] ```
https://github.com/rousan/symbol-es6/issues/2
Bug: Polyfill is always enabled. Expected behaviour: Polyfill is only enabled if needed for browser. Cause: var isES6Running = function() { return false; /* Now 'false' for testing purpose */...