File "dispatch.js"
Full Path: /home/fundopuh/trader.fxex.org/vendor/livewire/livewire/js/util/dispatch.js
File size: 186 bytes
MIME-type: text/plain
Charset: utf-8
export function dispatch(eventName) {
const event = document.createEvent('Events')
event.initEvent(eventName, true, true)
document.dispatchEvent(event)
return event
}