()
| 1619 | } |
| 1620 | } |
| 1621 | areSelectionValuesReversed() { |
| 1622 | const e3 = this.selectionStart, t3 = this.selectionEnd; |
| 1623 | return !(!e3 || !t3) && (e3[1] > t3[1] || e3[1] === t3[1] && e3[0] > t3[0]); |
| 1624 | } |
| 1625 | handleTrim(e3) { |
| 1626 | return this.selectionStart && (this.selectionStart[1] -= e3), this.selectionEnd && (this.selectionEnd[1] -= e3), this.selectionEnd && this.selectionEnd[1] < 0 ? (this.clearSelection(), true) : (this.selectionStart && this.selectionStart[1] < 0 && (this.selectionStart[1] = 0), false); |
| 1627 | } |
no outgoing calls
no test coverage detected