* determines if the keycode specified is a modifier key or not * * @param {string} key * @returns {boolean}
(key)
| 580 | * @returns {boolean} |
| 581 | */ |
| 582 | function _isModifier(key) { |
| 583 | return key == 'shift' || key == 'ctrl' || key == 'alt' || key == 'meta'; |
| 584 | } |
| 585 | |
| 586 | /** |
| 587 | * called to set a 1 second timeout on the specified sequence |
no outgoing calls
no test coverage detected