| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 | /* eslint sort-keys: ["error", "asc", {natural: true}] */'use strict';// https://github.com/facebook/react/blob/b87aabd/packages/react-dom/src/events/getEventKey.js#L36// Only meta characters which can't be deciphered from `String.fromCharCode()`module.exports = {	8: 'Backspace',	9: 'Tab',	12: 'Clear',	13: 'Enter',	16: 'Shift',	17: 'Control',	18: 'Alt',	19: 'Pause',	20: 'CapsLock',	27: 'Escape',	32: ' ',	33: 'PageUp',	34: 'PageDown',	35: 'End',	36: 'Home',	37: 'ArrowLeft',	38: 'ArrowUp',	39: 'ArrowRight',	40: 'ArrowDown',	45: 'Insert',	46: 'Delete',	112: 'F1',	113: 'F2',	114: 'F3',	115: 'F4',	116: 'F5',	117: 'F6',	118: 'F7',	119: 'F8',	120: 'F9',	121: 'F10',	122: 'F11',	123: 'F12',	144: 'NumLock',	145: 'ScrollLock',	186: ';',	187: '=',	188: ',',	189: '-',	190: '.',	191: '/',	219: '[',	220: '\\',	221: ']',	222: '\'',	224: 'Meta',};
 |