()
| 37 | public static deletePrevChar() { return ACTIONS.cursorBack() + ACTIONS.deleteChar(); } |
| 38 | public static deleteCurrChar() { return ACTIONS.deleteChar(); } |
| 39 | public static killLineForward() { return CSI + 'K'; } |
| 40 | public static killLine(n = 0) { return ACTIONS.cursorBack(n) + ACTIONS.killLineForward(); } |
| 41 | public static killEntireLine() { return CSI + '2K'; } |
| 42 | } |
no outgoing calls
no test coverage detected