()
| 14 | const CURSOR_HOME_WINDOWS = csi(0, 'f') |
| 15 | |
| 16 | function isWindowsTerminal(): boolean { |
| 17 | return process.platform === 'win32' && !!process.env.WT_SESSION |
| 18 | } |
| 19 | |
| 20 | function isMintty(): boolean { |
| 21 | // mintty 3.1.5+ sets TERM_PROGRAM to 'mintty' |
no outgoing calls
no test coverage detected