( input: string, platform = process.platform, )
| 124 | } |
| 125 | |
| 126 | export function isAbsoluteUserPath( |
| 127 | input: string, |
| 128 | platform = process.platform, |
| 129 | ): boolean { |
| 130 | return isAbsoluteNormalizedUserPath(normalizeUserPathInput(input, platform), platform); |
| 131 | } |
| 132 | |
| 133 | export function resolveUserPath( |
| 134 | input: string, |
no test coverage detected