6 lines
187 B
JavaScript
6 lines
187 B
JavaScript
async function tab({ shift } = {}) {
|
|
return this.keyboard(shift === true ? '{Shift>}{Tab}{/Shift}' : shift === false ? '[/ShiftLeft][/ShiftRight]{Tab}' : '{Tab}');
|
|
}
|
|
|
|
export { tab };
|