(path: string)
| 208 | } |
| 209 | |
| 210 | function normalizeWindowsPath(path: string): string { |
| 211 | return path.replaceAll('/', '\\'); |
| 212 | } |
| 213 | |
| 214 | function isAbsoluteWindowsPath(path: string): boolean { |
| 215 | return nodePath.win32.isAbsolute(normalizeWindowsPath(path)); |
no outgoing calls
no test coverage detected