greena13/react-hotkeys

View on GitHub
src/const/NonPrintableKeysDictionary.js

Summary

Maintainability
A
0 mins
Test Coverage
/**
 * Dictionary of keys whose name is not a single symbol or character
 */
import dictionaryFrom from '../utils/object/dictionaryFrom';
import translateToKey from '../vendor/react-dom/translateToKey';
import objectValues from '../utils/object/values';

const NonPrintableKeysDictionary =
  dictionaryFrom(objectValues(translateToKey));

export default NonPrintableKeysDictionary;