18 lines
383 B
JavaScript
Raw Normal View History

/* eslint-disable */
import { noop } from './util/index.js'
export default class Event {
constructor(type) {
this.cancelBubble = false
this.cancelable = false
this.target = null
this.currentTarget = null
this.preventDefault = noop
this.stopPropagation = noop
this.type = type
this.timeStamp = Date.now()
}
}