ts-code-enum
TypeScript icon, indicating that this package has built-in type declarations

0.0.3 • Public • Published

ts-code-enum

A TypeScript string enum for compile-time safety when working with event.code.

Inspired by https://gitlab.com/nfriend/ts-key-enum.

Installation

npm install ts-code-enum --save
yarn add ts-code-enum

Usage

For a basic enum:

import { KBCode } from "ts-code-enum";

For a const enum:

import { KBCode } from "ts-code-enum/const";

Then:

// if (ev.code === 'Escape') { ... }
if (ev.code === KBCode.Escape) { ... }

const enums are replaced by plain strings at compile-time. If you are using Typescript and your toolchain supports const enum, use ts-code-enum/const. Otherwise use ts-code-enum.

About event.code

MDN: The KeyboardEvent.code property represents a physical key on the keyboard (as opposed to the character generated by pressing the key). In other words, this property returns a value that isn't altered by keyboard layout or the state of the modifier keys.

Enum data is obtained by scraping the code values for major platforms from MDN. Values are included if they are present on all major platforms. Alphanumeric keys such as KBCode.KeyQ = "KeyQ" are included.

Dependencies (0)

    Dev Dependencies (6)

    Package Sidebar

    Install

    npm i ts-code-enum

    Weekly Downloads

    26

    Version

    0.0.3

    License

    MIT

    Unpacked Size

    13.6 kB

    Total Files

    8

    Last publish

    Collaborators

    • hubertyuan