()
| 40 | }); |
| 41 | |
| 42 | export function getAltKey(): 'Alt' | 'ControlLeft' { |
| 43 | return isMac() ? 'Alt' : 'ControlLeft'; |
| 44 | } |
| 45 | |
| 46 | export function getMetaKey(): 'MetaLeft' | 'ControlLeft' { |
| 47 | return isMac() ? 'MetaLeft' : 'ControlLeft'; |
no outgoing calls
no test coverage detected