UNPKG
@wilkr/alpine-ripple
Version:
latest (1.1.2)
1.1.2
1.1.1
1.1.0
1.0.0
Ripple effect (materialize) for Alpine.js.
github.com/rawilk/alpine-ripple
rawilk/alpine-ripple
@wilkr/alpine-ripple
/
src
/
js
/
utils
/
keydown.js
8 lines
(7 loc)
•
213 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
/** * Check if the keydown event is the enter key or the space bar. * * @param {KeyboardEvent} event * @returns {boolean} */
export
const
isEnterOrSpace =
event
=>
event
.key ===
'Enter'
||
event
.key ===
' '
;