Last active
February 21, 2018 18:29
-
-
Save pier-oliviert/54b40a4aaa20445a41a28191f65a0516 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| let index = -1 | |
| do { | |
| index += 1 | |
| const nodes = walker.currentNodes | |
| for (const node of nodes) { | |
| row.addNode(node) | |
| } | |
| walker.nextStep() | |
| } while (!walker.isDone) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment