(str: string)
| 31 | // --------------------------------------------------------------------------- |
| 32 | |
| 33 | function stripAnsiCodes(str: string): string { |
| 34 | // eslint-disable-next-line no-control-regex |
| 35 | return str.replace(/\x1B\[[0-9;]*[a-zA-Z]/g, '') |
| 36 | } |
| 37 | |
| 38 | function isTmuxAvailable(): boolean { |
| 39 | if (process.env.CI === 'true' || process.env.CI === '1') return false |