greena13/react-hotkeys

View on GitHub
src/const/ModifierFlagsDictionary.js

Summary

Maintainability
A
0 mins
Test Coverage
const ModifierFlagsDictionary = {
  Shift: [ 'shiftKey' ],
  Meta: [ 'metaKey' ],
  Control: [ 'ctrlKey' ],
  Alt: [ 'altKey' ]
};

export default ModifierFlagsDictionary;