(input: string)
| 85 | } |
| 86 | |
| 87 | function safeSegment(input: string) { |
| 88 | return input !== "." && input !== ".." && !input.includes(":") && !/[\s/\\]/.test(input) |
| 89 | } |
| 90 | |
| 91 | function hostLike(input: string) { |
| 92 | return input.includes(".") || input.includes(":") || input === "localhost" |
no outgoing calls
no test coverage detected