(path: string)
| 212 | } |
| 213 | |
| 214 | function isAbsoluteWindowsPath(path: string): boolean { |
| 215 | return nodePath.win32.isAbsolute(normalizeWindowsPath(path)); |
| 216 | } |
| 217 | |
| 218 | function dedupeWindowsPaths(paths: readonly string[]): readonly string[] { |
| 219 | const deduped: string[] = []; |
no test coverage detected