@matthewp/linkedom
Version:
A triple-linked lists based DOM implementation
24 lines (17 loc) • 514 B
JavaScript
// https://dom.spec.whatwg.org/#interface-customevent
/* c8 ignore start */
// One day Node might have CustomEvent too
import {Event} from './event.js';
/**
* @implements globalThis.CustomEvent
*/
const GlobalCustomEvent = typeof CustomEvent === 'function' ?
CustomEvent :
class CustomEvent extends Event {
constructor(type, eventInitDict = {}) {
super(type, eventInitDict);
this.detail = eventInitDict.detail;
}
};
export {GlobalCustomEvent as CustomEvent};
/* c8 ignore stop */