Add support for System.iterator for-loop #17
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "master"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Allow using the standard JS for-loop over the content of an ordered map instance.
In addition to the original
.forEachsyntax of:You can now also use it as:
NOTE: the motivation for this fix is that modern
eslinterconfiguration (like theunicornrecommended rules) will auto-replace.forEach()with afor() {}loop. Without this addition to theOrderedMapimplementation, the linter will break your code.See #16 .
Pull request closed