(key: KeyEvent)
| 112 | | { type: 'none' } |
| 113 | |
| 114 | const hasModifier = (key: KeyEvent) => |
| 115 | Boolean(key.ctrl || key.meta || key.option) |
| 116 | |
| 117 | /** |
| 118 | * Pure function that resolves a keyboard action based on key event and state. |
no outgoing calls
no test coverage detected