()
| 110 | } |
| 111 | |
| 112 | function getTerminalWidth(): number | undefined { |
| 113 | // https://stackoverflow.com/questions/30335637/get-width-of-terminal-in-node-js/30335724#30335724 |
| 114 | return ( |
| 115 | (typeof process !== 'undefined' && typeof process.stdout !== 'undefined' && process.stdout.columns) || undefined |
| 116 | ) |
| 117 | } |
no outgoing calls
no test coverage detected
searching dependent graphs…