shortcut-string
v1.1.0
Published
Returns the textual representation of a shortcut given a keyboard event in the browser
Downloads
13
Readme
shortcut-string
This module returns the textual representation of a shortcut given a keyboard event. Examples of shortcuts:
- Cmd+L
- Cmd+Shift+M
- Ctrl+O
- Backspace
- T
- Right
- Shift+Down
- Shift+F1
- Ctrl++
- Ctrl+Left
var shortcutString = require('shortcut-string');
document.addEventListener('keydown', function(event) {
console.log(shortcutString.fromEvent(event));
});