(input: string)
| 52 | | { kind: "unavailable"; input: string }; |
| 53 | |
| 54 | function normalizeSeparators(input: string): string { |
| 55 | return input.replace(/\\/g, "/"); |
| 56 | } |
| 57 | |
| 58 | function stripTrailingSlashes(input: string): string { |
| 59 | return input.replace(/\/+$/, ""); |
no test coverage detected