makeIterator() return an iterable object#13
Conversation
This fixes villadora#12 and allow to use `for..of` and array spread.
|
Any update on this? I can maintain the project if given permissions. |
|
any update on this? |
|
Would love to see this merged |
|
Maybe consider making this backward compatible by only adding support for |
|
Also consider adding an Iterator over the whole map, as the native map implements for (const [key, val] of map) |
I doubt that would happen, repo owner is shown as innactive for three years...
In fact, I would move the other way, remove backwards compatibility and make code smaller and simpler, if you want to use in older browsers then use a polyfill.
Not a bad idea, just only |
This fixes #12 and allow to use
for..ofand array spread.