(dx=null, dy=null)
| 58 | |
| 59 | // change relative cursor position |
| 60 | cursorRelative(dx=null, dy=null){ |
| 61 | if (!this.stream.isTTY){ |
| 62 | return; |
| 63 | } |
| 64 | |
| 65 | // store current position |
| 66 | this.dy = this.dy + dy; |
| 67 | |
| 68 | // move cursor relative |
| 69 | _readline.moveCursor(this.stream, dx, dy); |
| 70 | } |
| 71 | |
| 72 | // relative reset |
| 73 | cursorRelativeReset(){ |
nothing calls this directly
no outgoing calls
no test coverage detected