checks if event is key combo
npm install is-key-combo
Do assertions on given key combos and events and returns true if match
```
npm install is-key-combo
`js`
const isKeyCombo = require('is-key-combo');
const isValid = isKeyCombo(event, 'cmd+a');
- cmd+acmd+shift+esc
- alt+enter
-
Note that cmd` applies both for
MIT