UNPKG

@keybindy/core

Version:

A lightweight and framework-agnostic keyboard shortcut manager for web apps. Define, register, and handle keybindings with ease.

8 lines (5 loc) 167 B
import { KeyMapping } from './mapping.js'; function normalizeKey(code) { return KeyMapping[code].toLowerCase() || code.toLowerCase(); } export { normalizeKey };