(index: number, value: string)
| 52 | return this.replaceLeft(index, index, value); |
| 53 | } |
| 54 | insertRight(index: number, value: string): typeof this { |
| 55 | return this.replaceRight(index, index, value); |
| 56 | } |
| 57 | delete(start: number, end: number): typeof this { |
| 58 | return this.replaceRight(start, end, ""); |
| 59 | } |
no test coverage detected