(s: string)
| 52 | export function formatBashOutputForDisplay(stdout: string, stderr: string, isError?: boolean): string { |
| 53 | try { |
| 54 | const dim = (s: string): string => currentTheme.fg('textDim', s); |
| 55 | const parts: string[] = []; |
| 56 | const cleanStdout = sanitizeShellOutput(stdout).trimEnd(); |
| 57 | if (cleanStdout.length > 0) parts.push(dim(cleanStdout)); |
no test coverage detected