1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
| "use strict";
|
| function Event(type, bubbles, cancelable, target) {
| this.initEvent(type, bubbles, cancelable, target);
| }
|
| Event.prototype = {
| initEvent: function(type, bubbles, cancelable, target) {
| this.type = type;
| this.bubbles = bubbles;
| this.cancelable = cancelable;
| this.target = target;
| this.currentTarget = target;
| },
|
| // eslint-disable-next-line no-empty-function
| stopPropagation: function() {},
|
| preventDefault: function() {
| this.defaultPrevented = true;
| }
| };
|
| module.exports = Event;
|
|