(codepoint: number)
| 354 | ]); |
| 355 | |
| 356 | function normalizeKittyFunctionalCodepoint(codepoint: number): number { |
| 357 | return KITTY_FUNCTIONAL_KEY_EQUIVALENTS.get(codepoint) ?? codepoint; |
| 358 | } |
| 359 | |
| 360 | function normalizeShiftedLetterIdentityCodepoint(codepoint: number, modifier: number): number { |
| 361 | const effectiveModifier = modifier & ~LOCK_MASK; |
no test coverage detected