jizy-utils
Version:
A simple JS utility library.
22 lines (15 loc) • 377 B
Markdown
A simple utilities library for JavaScript applications.
Simple way to handle keypress events.
```javascript
import { KeyPress } from 'jizy-utils';
if (KeyPress.on('Enter', event)) {
console.log('Enter key pressed');
}
// OR
if (KeyPress.Enter(event)) {
console.log('Enter key pressed');
}
```