UNPKG

@ryusei/code

Version:

<div align="center"> <a href="https://code.ryuseijs.com"> <img alt="RyuseiCode" src="https://code.ryuseijs.com/images/svg/logo.svg" width="70"> </a>

12 lines (9 loc) 263 B
import { NORMALIZATION_MAP } from '../../../constants/keys'; /** * Normalizes the provided key for different browsers. * * @param key - A key to normalize. */ export function normalizeKey( key: string ): string { return NORMALIZATION_MAP[ key ] || key; }