(aPath: string)
| 162 | const fileUriPrefix = 'file:///'; |
| 163 | |
| 164 | const isWindowsFileUri = (aPath: string) => |
| 165 | aPath.startsWith(fileUriPrefix) && aPath[fileUriPrefix.length + 1] === ':'; |
| 166 | |
| 167 | export const properSplit = (path: string) => path.split(splitRe); |
| 168 |
no outgoing calls
no test coverage detected