(x=null, y=null)
| 48 | |
| 49 | // change cursor positionn |
| 50 | cursorTo(x=null, y=null){ |
| 51 | if (!this.stream.isTTY){ |
| 52 | return; |
| 53 | } |
| 54 | |
| 55 | // move cursor absolute |
| 56 | _readline.cursorTo(this.stream, x, y); |
| 57 | } |
| 58 | |
| 59 | // change relative cursor position |
| 60 | cursorRelative(dx=null, dy=null){ |
no outgoing calls
no test coverage detected