(path: string)
| 3 | export const isWindows = process.platform === "win32"; |
| 4 | |
| 5 | export function escapeImportPath(path: string) { |
| 6 | return isWindows ? path.replaceAll("\\", "\\\\") : path; |
| 7 | } |
| 8 | |
| 9 | const ballmerSpinner = () => ({ |
| 10 | start: (msg?: string): void => { |
no outgoing calls
no test coverage detected
searching dependent graphs…