Keys.js 505 B

12345678910111213141516171819202122232425262728293031323334
  1. "use strict";
  2. /**
  3. * Copyright (c) 2013-present, Facebook, Inc.
  4. *
  5. * This source code is licensed under the MIT license found in the
  6. * LICENSE file in the root directory of this source tree.
  7. *
  8. */
  9. module.exports = {
  10. BACKSPACE: 8,
  11. TAB: 9,
  12. RETURN: 13,
  13. ALT: 18,
  14. ESC: 27,
  15. SPACE: 32,
  16. PAGE_UP: 33,
  17. PAGE_DOWN: 34,
  18. END: 35,
  19. HOME: 36,
  20. LEFT: 37,
  21. UP: 38,
  22. RIGHT: 39,
  23. DOWN: 40,
  24. DELETE: 46,
  25. COMMA: 188,
  26. PERIOD: 190,
  27. A: 65,
  28. Z: 90,
  29. ZERO: 48,
  30. NUMPAD_0: 96,
  31. NUMPAD_9: 105
  32. };