* Send a command to a window if it is valid * @param {string} name window * @param {string} command * @param {...any} args
(name, command, ...args)
| 553 | * @param {...any} args |
| 554 | */ |
| 555 | sendToValidWindow(name, command, ...args) { |
| 556 | if ( this.isValid(name) ) { this.sendToWindow(name, command, ...args) } |
| 557 | } |
| 558 | |
| 559 | /** |
| 560 | * Send a command to a window if it is valid, and focus it |
no test coverage detected