(index: number, value: string)
| 49 | this._edits.length = n; |
| 50 | } |
| 51 | insertLeft(index: number, value: string): typeof this { |
| 52 | return this.replaceLeft(index, index, value); |
| 53 | } |
| 54 | insertRight(index: number, value: string): typeof this { |
| 55 | return this.replaceRight(index, index, value); |
| 56 | } |
no test coverage detected