(filePath: string, platform: NodeJS.Platform)
| 99 | } |
| 100 | |
| 101 | function normalizeResolvedPath(filePath: string, platform: NodeJS.Platform): string { |
| 102 | const resolvedPath = resolve(filePath); |
| 103 | return platform === 'win32' ? resolvedPath.toLowerCase() : resolvedPath; |
| 104 | } |
| 105 | |
| 106 | function candidateGlobalPackageDirs( |
| 107 | globalPrefix: string, |
no test coverage detected