(ref: string)
| 328 | } |
| 329 | |
| 330 | function normalizeRef(ref: string): string { |
| 331 | return ref.trim().toLowerCase(); |
| 332 | } |
| 333 | |
| 334 | function summarizeNode(node: any): string { |
| 335 | const ref = typeof node?.ref === 'string' ? node.ref : '(no-ref)'; |
no outgoing calls
no test coverage detected