(input: string)
| 8 | } |
| 9 | |
| 10 | function isWindowsStoragePath(input: string) { |
| 11 | return /^[A-Za-z]:\//.test(input) || input.startsWith("//") |
| 12 | } |
| 13 | |
| 14 | function absolute(input: string) { |
| 15 | const result = storagePath(input) |
no outgoing calls
no test coverage detected