Files
JiboSDK/node_modules/yaeti/lib/Event.js

14 lines
211 B
JavaScript
Raw Normal View History

2026-03-22 03:21:45 +02:00
/**
* 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;
}