Skip to content

Instantly share code, notes, and snippets.

@sh78
Last active April 18, 2018 02:25
Show Gist options
  • Save sh78/b006ea17000363f5e36dd38dd48dcc63 to your computer and use it in GitHub Desktop.
Save sh78/b006ea17000363f5e36dd38dd48dcc63 to your computer and use it in GitHub Desktop.
// map keyboard codes to their actual key value
var keyCodeMap = {
48: "0",
49: "1",
50: "2",
51: "3",
52: "4",
53: "5",
54: "6",
55: "7",
56: "8",
57: "9",
59: ";",
65: "a",
66: "b",
67: "c",
68: "d",
69: "e",
70: "f",
71: "g",
72: "h",
73: "i",
74: "j",
75: "k",
76: "l",
77: "m",
78: "n",
79: "o",
80: "p",
81: "q",
82: "r",
83: "s",
84: "t",
85: "u",
86: "v",
87: "w",
88: "x",
89: "y",
90: "z",
96: "0",
97: "1",
98: "2",
99: "3",
100: "4",
101: "5",
102: "6",
103: "7",
104: "8",
105: "9"
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment