(err: unknown)
| 160 | } |
| 161 | |
| 162 | export function hasStringStdout(err: unknown): err is { stdout: string } { |
| 163 | return ( |
| 164 | typeof err === "object" && err !== null && "stdout" in err && typeof err.stdout === "string" |
| 165 | ); |
| 166 | } |
| 167 | |
| 168 | export function getUntrackedDiff(files: string[]): string { |
| 169 | const patches: string[] = []; |
no outgoing calls
no test coverage detected