You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

@fluentui/keyboard-key

Package Overview
Dependencies
Maintainers
0
Versions
56
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@fluentui/keyboard-key

A simple utility for determining the KeyboardEvent.key property from a keyboard event.

0.4.23
latest
Source
npmnpm
Version published
Weekly downloads
145K
-9.01%
Maintainers
0
Weekly downloads
 
Created

What is @fluentui/keyboard-key?

@fluentui/keyboard-key is a utility package that provides constants and helper functions for handling keyboard events in a consistent manner. It is particularly useful for managing keyboard interactions in web applications, ensuring that key codes are handled correctly across different browsers and platforms.

What are @fluentui/keyboard-key's main functionalities?

Key Code Constants

The package provides constants for common key codes, making it easier to handle keyboard events without having to remember the numeric key codes.

const { EnterKey, EscapeKey } = require('@fluentui/keyboard-key');
console.log(EnterKey); // Outputs: 13
console.log(EscapeKey); // Outputs: 27

Key Code Mapping

The package includes helper functions like `getCode` and `getKey` to map between key names and key codes, simplifying the process of working with keyboard events.

const { getCode, getKey } = require('@fluentui/keyboard-key');
console.log(getCode('Enter')); // Outputs: 13
console.log(getKey(13)); // Outputs: 'Enter'

Cross-Browser Compatibility

The package ensures that keyboard events are handled consistently across different browsers by providing utility functions like `isKey` to check if a specific key was pressed.

const { isKey } = require('@fluentui/keyboard-key');
const event = new KeyboardEvent('keydown', { keyCode: 13 });
console.log(isKey(event, 'Enter')); // Outputs: true

Other packages similar to @fluentui/keyboard-key

FAQs

Package last updated on 24 Jun 2024

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

About

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.

  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc

U.S. Patent No. 12,346,443 & 12,314,394. Other pending.