(value: string | undefined)
| 75 | } |
| 76 | |
| 77 | function normalizeSelectorText(value: string | undefined): string | null { |
| 78 | if (!value) return null; |
| 79 | const trimmed = value.trim(); |
| 80 | if (!trimmed) return null; |
| 81 | return trimmed; |
| 82 | } |
no outgoing calls
no test coverage detected
searching dependent graphs…