event.js 293 B

12345678910111213
  1. module.exports = Event
  2. function Event(family) {}
  3. Event.prototype.initEvent = function _Event_initEvent(type, bubbles, cancelable) {
  4. this.type = type
  5. this.bubbles = bubbles
  6. this.cancelable = cancelable
  7. }
  8. Event.prototype.preventDefault = function _Event_preventDefault() {
  9. }