(node: Node | undefined)
| 48 | } |
| 49 | |
| 50 | export function getChildCount(node: Node | undefined): number { |
| 51 | return node?.childrenKeys?.length ?? 0; |
| 52 | } |
| 53 | |
| 54 | export function getChildrenKeys(node: Node): string[] { |
| 55 | return node?.childrenKeys ?? []; |
no outgoing calls
no test coverage detected