New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

ts-code-enum

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ts-code-enum

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

  • 0.0.3
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

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.

Keywords

FAQs

Package last updated on 29 Sep 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc