| id | normalizeKeyName |
|---|---|
| title | normalizeKeyName |
function normalizeKeyName(key): string;Defined in: constants.ts:476
Normalizes a key name to its canonical form.
Converts various key name formats (aliases, case variations) into the standard canonical names used throughout the library. This enables a more forgiving API where users can write keys in different ways and still get correct behavior.
Normalization rules:
- Check aliases first (e.g., 'Esc' → 'Escape', 'Del' → 'Delete')
- Single letters → uppercase (e.g., 'a' → 'A', 's' → 'S')
- Function keys → uppercase (e.g., 'f1' → 'F1', 'F12' → 'F12')
- Other keys → returned as-is (already canonical or unknown)
string
The key name to normalize (can be an alias, lowercase, etc.)
string
The canonical key name
normalizeKeyName('esc') // 'Escape'
normalizeKeyName('a') // 'A'
normalizeKeyName('f1') // 'F1'
normalizeKeyName('ArrowUp') // 'ArrowUp' (already canonical)