UNPKG

svgdom

Version:

Straightforward DOM implementation for SVG, HTML and XML

15 lines (13 loc) 251 B
export class Event { constructor (type) { this.type = type this.cancelable = false this.defaultPrevented = false this.target = null } preventDefault () { if (this.cancelable) { this.defaultPrevented = true } } }