1.1.0 • Published 8 years ago
shortcut-string v1.1.0
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));
});