mirror of
https://github.com/tornadocash/provider.git
synced 2024-11-26 11:39:02 +01:00
14 lines
211 B
JavaScript
14 lines
211 B
JavaScript
/**
|
|
* 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;
|
|
}
|