(line: string)
| 142 | } |
| 143 | |
| 144 | function isReadFileMetaLine(line: string) { |
| 145 | return /^\[showing lines \d+-\d+ of \d+; use offset=\d+ to continue\]$/.test( |
| 146 | line, |
| 147 | ); |
| 148 | } |
| 149 | |
| 150 | function trimTrailingEmptyLines(lines: string[]) { |
| 151 | let end = lines.length; |
no outgoing calls
no test coverage detected