(value?: string)
| 175 | } |
| 176 | |
| 177 | function trimToValue(value?: string): string | undefined { |
| 178 | const trimmed = value?.trim() |
| 179 | |
| 180 | return trimmed || undefined |
| 181 | } |
| 182 | |
| 183 | function getHttpSuggestedName(url: string): string { |
| 184 | try { |
no outgoing calls
no test coverage detected