()
| 205 | } |
| 206 | |
| 207 | protected _clearUserInput(): void { |
| 208 | this.rl?.write(null, { ctrl: true, name: 'u' }); |
| 209 | this._setUserInput(''); |
| 210 | } |
| 211 | |
| 212 | private onKeypress(char: string | undefined, key: Key) { |
| 213 | if (this._track && key.name !== 'return') { |
no test coverage detected