Event.js 211 B

12345678910111213
  1. /**
  2. * Expose the Event class.
  3. */
  4. module.exports = _Event;
  5. function _Event(type) {
  6. this.type = type;
  7. this.isTrusted = false;
  8. // Set a flag indicating this is not a DOM Event object
  9. this._yaeti = true;
  10. }