(error)
| 1073 | } |
| 1074 | |
| 1075 | function summarizeError(error) { |
| 1076 | return String(error?.message ?? error) |
| 1077 | .split("\n") |
| 1078 | .filter(Boolean) |
| 1079 | .slice(0, 3) |
| 1080 | .join(" | "); |
| 1081 | } |
| 1082 | |
| 1083 | function cliArgs(args) { |
| 1084 | return args; |
no outgoing calls
no test coverage detected