* `traverse(callback)` * * Recursively traverse all nodes in a node tree. Executes given * callback for this node and each of its child nodes. Similar to * Array.forEach, except recursive. The callback function is a mapping * function accepting a node, and returning a replacement for
(
callback: (node: MathNode, path: string, parent: MathNode) => void
)
| 4774 | * ``` |
| 4775 | */ |
| 4776 | traverse( |
| 4777 | callback: (node: MathNode, path: string, parent: MathNode) => void |
| 4778 | ): void |
| 4779 | } |
no outgoing calls
no test coverage detected