MCPcopy Index your code
hub / github.com/tiny-pilot/tinypilot / isModifierCode

Function isModifierCode

app/static/js/keycodes.js:22–34  ·  view source on GitHub ↗
(code)

Source from the content-addressed store, hash-verified

20}
21
22export function isModifierCode(code) {
23 const modifierCodes = [
24 "AltLeft",
25 "AltRight",
26 "ControlLeft",
27 "ControlRight",
28 "MetaLeft",
29 "MetaRight",
30 "ShiftLeft",
31 "ShiftRight",
32 ];
33 return modifierCodes.indexOf(code) >= 0;
34}

Callers 3

onKeyDownMethod · 0.90
isIgnoredKeystrokeFunction · 0.90
onKeyUpFunction · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected