(input: string)
| 89 | } |
| 90 | |
| 91 | function hostLike(input: string) { |
| 92 | return input.includes(".") || input.includes(":") || input === "localhost" |
| 93 | } |
| 94 | |
| 95 | function withSlash(input: string) { |
| 96 | return input.endsWith("/") ? input : `${input}/` |
no outgoing calls
no test coverage detected