1.1.0 • Published 6 years ago

shortcut-string v1.1.0

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

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));
});