mirror of
https://github.com/xibyte/jsketcher
synced 2025-12-06 16:33:15 +01:00
5 lines
No EOL
200 B
JavaScript
5 lines
No EOL
200 B
JavaScript
export function keyCode(eventType, value) {
|
|
const keyboardEvent = new KeyboardEvent(eventType, {bubbles:true});
|
|
Object.defineProperty(keyboardEvent, "keyCode", {value});
|
|
return keyboardEvent;
|
|
}
|