(p: string)
| 141 | const home = resolve(os.homedir()); |
| 142 | // Case-insensitive on macOS/Windows (case-preserving but case-insensitive FS). |
| 143 | const norm = (p: string): string => |
| 144 | process.platform === 'darwin' || process.platform === 'win32' ? p.toLowerCase() : p; |
| 145 | const r = norm(resolved); |
| 146 | const h = norm(home); |
| 147 |
no outgoing calls
no test coverage detected