(text: string)
| 95 | } |
| 96 | |
| 97 | function compactRecordedGetRefLabel(text: string): string | undefined { |
| 98 | const trimmed = text.trim(); |
| 99 | if (!trimmed || trimmed.length > 80 || /[\r\n]/.test(trimmed)) return undefined; |
| 100 | return trimmed; |
| 101 | } |
| 102 | |
| 103 | function getResolvedTarget( |
| 104 | result: Record<string, unknown>, |
no outgoing calls
no test coverage detected