Files
setup-python/node_modules/jsdom/lib/jsdom/living/events/HashChangeEvent-impl.js
Danny McCormick 39c08a0eaa Initial pass
2019-06-26 21:12:00 -04:00

15 lines
332 B
JavaScript

"use strict";
const EventImpl = require("./Event-impl").implementation;
const HashChangeEventInit = require("../generated/HashChangeEventInit");
class HashChangeEventImpl extends EventImpl {
}
HashChangeEventImpl.defaultInit = HashChangeEventInit.convert(undefined);
module.exports = {
implementation: HashChangeEventImpl
};