Websocket
[VSoRC/.git] / node_modules / websocket / node_modules / yaeti / lib / Event.js
1 /**
2  * Expose the Event class.
3  */
4 module.exports = _Event;
5
6
7 function _Event(type) {
8         this.type = type;
9         this.isTrusted = false;
10
11         // Set a flag indicating this is not a DOM Event object
12         this._yaeti = true;
13 }