(node: RawSnapshotNode)
| 66 | } |
| 67 | |
| 68 | function extractReadText(node: RawSnapshotNode): string { |
| 69 | for (const value of [node.value, node.label, node.identifier]) { |
| 70 | if (typeof value === 'string' && value.length > 0) return value; |
| 71 | } |
| 72 | return ''; |
| 73 | } |
no outgoing calls
no test coverage detected
searching dependent graphs…