Hotkeys detection & defenition
ES module version of is-hotkey
import isHotkey from 'uc-keys';
function onKeyDown(e) {
if (isHotkey('mod+s', e)) {
...
}
}
For better perfomance you can curry the hotkey:
import isHotkey from 'uc-keys'
const isSaveHotkey = isHotkey('mod+s')
function onKeyDown(e) {
if (isSaveHotkey(e)) {
...
}
}
License MIT
© Ian Storm Taylor