(err: any)
| 22 | } |
| 23 | |
| 24 | function getErrorText(err: any): string { |
| 25 | return `${err?.stderr || ""}\n${err?.stdout || ""}\n${err?.message || ""}`; |
| 26 | } |
| 27 | |
| 28 | function isPermissionError(err: any): boolean { |
| 29 | const errorText = getErrorText(err); |
no outgoing calls
no test coverage detected