Newer
Older
2024-Tsubasa / system / websocket_test / node_modules / yaeti / lib / Event.js
@tsubasa tsubasa on 11 Mar 2024 211 bytes add:directory
/**
 * Expose the Event class.
 */
module.exports = _Event;


function _Event(type) {
	this.type = type;
	this.isTrusted = false;

	// Set a flag indicating this is not a DOM Event object
	this._yaeti = true;
}