(line, column, command = 'H')
| 25 | } |
| 26 | |
| 27 | export function moveToPosition(line, column, command = 'H') { |
| 28 | return escapePrefix + line + ';' + column + command; |
| 29 | } |
| 30 | |
| 31 | export function savePosition() { |
| 32 | return escapePrefix + 's'; |
no outgoing calls
no test coverage detected