Sha256: f43772ffc3129e272a0bf25bb7941014ec2489dd5a02e4eff2f6b0bb7fced4b2
Contents?: true
Size: 501 Bytes
Versions: 26
Compression:
Stored size: 501 Bytes
Contents
"use strict"; const EventImpl = require("./Event-impl").implementation; const CustomEventInit = require("../generated/CustomEventInit"); class CustomEventImpl extends EventImpl { initCustomEvent(type, bubbles, cancelable, detail) { if (this._dispatchFlag) { return; } this.initEvent(type, bubbles, cancelable); this.detail = detail; } } CustomEventImpl.defaultInit = CustomEventInit.convert(undefined, undefined); module.exports = { implementation: CustomEventImpl };
Version data entries
26 entries across 26 versions & 1 rubygems