UNPKG

@wilkr/alpine-ripple

Version:

Ripple effect (materialize) for Alpine.js.

8 lines (7 loc) 213 B
/** * 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 === ' ';