You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
432 B
JavaScript
22 lines
432 B
JavaScript
'use strict';
|
|
// https://dom.spec.whatwg.org/#interface-customevent
|
|
|
|
/* c8 ignore start */
|
|
|
|
// One day Node might have CustomEvent too
|
|
|
|
const {Event} = require('./event.js');
|
|
|
|
/**
|
|
* @implements globalThis.CustomEvent
|
|
*/
|
|
class CustomEvent extends Event {
|
|
constructor(type, eventInitDict = {}) {
|
|
super(type, eventInitDict);
|
|
this.detail = eventInitDict.detail;
|
|
}
|
|
}
|
|
exports.CustomEvent = CustomEvent
|
|
|
|
/* c8 ignore stop */
|