(nodeTable: NodeTable, nodeId?: string)
| 514 | } |
| 515 | |
| 516 | function getPathToNode(nodeTable: NodeTable, nodeId?: string): string[] { |
| 517 | return getNodeAncestorPath(nodeTable, nodeId).reverse(); |
| 518 | } |
| 519 | |
| 520 | function getNodeAncestorPath( |
| 521 | nodeTable: NodeTable, |
no test coverage detected