(maybeExeca: unknown)
| 80 | }; |
| 81 | |
| 82 | function isExecaChildProcess(maybeExeca: unknown): maybeExeca is Awaited<ExecaChildProcess> { |
| 83 | return typeof maybeExeca === "object" && maybeExeca !== null && "escapedCommand" in maybeExeca; |
| 84 | } |
| 85 | |
| 86 | async function getFileSize(filePath: string): Promise<number> { |
| 87 | try { |
no outgoing calls
no test coverage detected
searching dependent graphs…