(obj)
| 46 | } |
| 47 | |
| 48 | export function isShortcutValue(obj) { |
| 49 | if(!obj) return false; |
| 50 | return [obj.alt, obj.control, obj?.key, obj?.key?.char].every((k)=>!_.isUndefined(k)); |
| 51 | } |
| 52 | |
| 53 | export function getEnterKeyHandler(clickHandler) { |
| 54 | return (e)=>{ |
no outgoing calls
no test coverage detected