(s: string)
| 127 | const cols = (stdout.columns && stdout.columns > 0) ? stdout.columns : 80; |
| 128 | let physical = 0; |
| 129 | const emit = (s: string): void => { stdout.write(s + '\n'); physical += physicalRows(s, cols); }; |
| 130 | |
| 131 | const end = Math.min(options.length, top + pageSize); |
| 132 |
no test coverage detected