(filePath: string)
| 211 | * Fixes Windows backslash paths so glob matching works consistently. |
| 212 | */ |
| 213 | export function normalizePath(filePath: string): string { |
| 214 | return filePath.replace(/\\/g, '/'); |
| 215 | } |
| 216 | |
| 217 | /** |
| 218 | * Cross-process file lock using a lock file with PID tracking. |
no outgoing calls
no test coverage detected