UNPKG

alpinejs

Version:

The rugged, minimal JavaScript framework

13 lines (11 loc) 290 B
export function dispatch(el, name, detail = {}) { el.dispatchEvent( new CustomEvent(name, { detail, bubbles: true, // Allows events to pass the shadow DOM barrier. composed: true, cancelable: true, }) ) }