()
| 80 | } |
| 81 | |
| 82 | deleteForward() { |
| 83 | let { cursor, input } = this.state; |
| 84 | if (input[cursor] === void 0) return this.alert(); |
| 85 | this.input = `${input}`.slice(0, cursor) + `${input}`.slice(cursor + 1); |
| 86 | this.render(); |
| 87 | } |
| 88 | |
| 89 | cutForward() { |
| 90 | let pos = this.cursor; |