UNPKG

redom

Version:

Tiny turboboosted JavaScript library for creating user interfaces.

8 lines (6 loc) 240 B
import { getEl } from "./util.js"; export function dispatch(child, data, eventName = "redom") { const childEl = getEl(child); const event = new CustomEvent(eventName, { bubbles: true, detail: data }); childEl.dispatchEvent(event); }