(n)
| 58 | } |
| 59 | |
| 60 | async skip(n) { |
| 61 | if (this.eof()) return |
| 62 | if (!this.started) await this._init() |
| 63 | if (this.cursor + n > this.buffer.length) { |
| 64 | this._trim() |
| 65 | await this._accumulate(n) |
| 66 | } |
| 67 | this._moveCursor(n) |
| 68 | } |
| 69 | |
| 70 | async undo() { |
| 71 | this.cursor = this.undoCursor |
nothing calls this directly
no test coverage detected