UNPKG
@siamf/context-menu
Version:
latest (1.2.2)
1.2.2
1.2.1
1.2.0
1.0.5
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0
React hook for displaying configure able context menu
github.com/siamahnaf/upload
siamahnaf/upload
@siamf/context-menu
/
dist
/
esm
/
utils
/
isEventType.js
9 lines
•
282 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
export function
isKeyboardEvent
(
event
)
{
return
event
.type.startsWith(
"key"
); }
export function
isMouseEvent
(
event
)
{
return
(
event
.type ===
"click"
||
event
.type ===
"contextmenu"
||
event
.type.startsWith(
"mouse"
)); }
//# sourceMappingURL=isEventType.js.map