(stderr: string)
| 224 | } |
| 225 | |
| 226 | function trimHttpErrorOutput(stderr: string): string { |
| 227 | const trimmed = stderr.trim(); |
| 228 | return trimmed.length > 0 ? trimmed.slice(0, 1000) : 'request process exited without stderr'; |
| 229 | } |
no outgoing calls
no test coverage detected