Your IP : 216.73.216.79


Current Path : /var/www/html/redd/node_modules/alpinejs/src/utils/
Upload File :
Current File : /var/www/html/redd/node_modules/alpinejs/src/utils/dispatch.js

export function dispatch(el, name, detail = {}, options = {}) {
    return el.dispatchEvent(
        new CustomEvent(name, {
            detail,
            bubbles: true,
            // Allows events to pass the shadow DOM barrier.
            composed: true,
            cancelable: true,
            // Allows overriding the default event options.
            ...options
        })
    )
}