(node: Node)
| 52 | } |
| 53 | |
| 54 | export function getChildrenKeys(node: Node): string[] { |
| 55 | return node?.childrenKeys ?? []; |
| 56 | } |
| 57 | |
| 58 | export function getChildId(node: Node, key: string): string { |
| 59 | return (node.childrenKey2Id ?? {})[key]; |
no outgoing calls
no test coverage detected