cursorLeft

Moving cursot to the left.

type CursorLeftCommandOptions = {
    delay?: number; // delault: 0
    instant?: boolean; // delault: false
}

// first argument is distance to move
cursorLeft(4, { delay: 120, instant: false })

Last updated