* Skips a number of lines. * * @param count the number of lines to skip * @returns this
(count: number)
| 154 | * @returns this |
| 155 | */ |
| 156 | async skip(count: number) { |
| 157 | do { |
| 158 | await this.line(); |
| 159 | if (--count === 0) { |
| 160 | return this; |
| 161 | } |
| 162 | } while (true); |
| 163 | } |
| 164 | |
| 165 | /** |
| 166 | * Checks if the a line is a match for the current expression. |
no test coverage detected