(value?: string)
| 74 | } |
| 75 | |
| 76 | function trimToValue(value?: string): string | undefined { |
| 77 | const trimmed = value?.trim() |
| 78 | return trimmed || undefined |
| 79 | } |
| 80 | |
| 81 | function getUrlHost(url?: string): string | undefined { |
| 82 | if (!url) { |
no outgoing calls
no test coverage detected