Rev 915 | Blame | Compare with Previous | Last modification | View Log | RSS feed
/** * Expose the Event class. */ module.exports = _Event; function _Event(type) { this.type = type; this.isTrusted = false; }
/**
* Expose the Event class.
*/
module.exports = _Event;
function _Event(type) {
this.type = type;
this.isTrusted = false;
}