(s: string)
| 45 | }; |
| 46 | |
| 47 | export function stripColor(s: string): string { |
| 48 | // eslint-disable-next-line no-control-regex |
| 49 | return s.replace(/\x1b\[[0-9;]*m/g, ""); |
| 50 | } |
| 51 | |
| 52 | export function hangingIndentLog( |
| 53 | effects: TtyEffects, |
no outgoing calls
no test coverage detected