Files
install-nix-action/node_modules/jsdom/lib/jsdom/living/events/WheelEvent-impl.js
Domen Kožar 70742d22d9 v6
2019-11-19 17:50:30 +01:00

13 lines
315 B
JavaScript

"use strict";
const MouseEventImpl = require("./MouseEvent-impl").implementation;
const WheelEventInit = require("../generated/WheelEventInit");
class WheelEventImpl extends MouseEventImpl {}
WheelEventImpl.defaultInit = WheelEventInit.convert(undefined);
module.exports = {
implementation: WheelEventImpl
};