(start: number, end: number)
| 55 | return this.replaceRight(index, index, value); |
| 56 | } |
| 57 | delete(start: number, end: number): typeof this { |
| 58 | return this.replaceRight(start, end, ""); |
| 59 | } |
| 60 | replaceLeft(start: number, end: number, value: string): typeof this { |
| 61 | this._subsume(start, end); |
| 62 | this._edits.splice(this._bisectLeft(start), 0, {start, end, value}); |
no test coverage detected