1.0.0 • Published 6 years ago

uc-keys v1.0.0

Weekly downloads
2
License
MIT
Repository
github
Last release
6 years ago

Unchained UI

Keys

NPM Version NPM Downloads

Hotkeys detection & defenition

ES module version of is-hotkey

Usage

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