File Manager

Path: /home/liffinac1/domains/bank.stellerpay.ca/public_html/vendor/livewire/livewire/js/util/

Viewing File: dispatch.js

export function dispatch(eventName) {
    const event = document.createEvent('Events')

    event.initEvent(eventName, true, true)

    document.dispatchEvent(event)

    return event
}