(value: string)
| 20 | } |
| 21 | |
| 22 | function decode(value: string): string { |
| 23 | try { |
| 24 | return decodeURIComponent(value) |
| 25 | } catch { |
| 26 | return value |
| 27 | } |
| 28 | } |
| 29 | |
| 30 | function posixJoin(a: string, b: string): string { |
| 31 | if (!a) return b |
no outgoing calls
no test coverage detected