jsdom
Version:
A JavaScript implementation of many web standards
13 lines (8 loc) • 327 B
JavaScript
;
const EventImpl = require("./Event-impl").implementation;
const EventInit = require("../../../generated/idl/EventInit");
class BeforeUnloadEventImpl extends EventImpl {}
BeforeUnloadEventImpl.defaultInit = EventInit.convert(undefined, undefined);
module.exports = {
implementation: BeforeUnloadEventImpl
};