CustomEvents

Events Super simple custom events

Constructor

new CustomEvents()

Example
class MyClass {
  constructor() {
      this.events = new CustomEvents( this  );
  }
  start() {
      this.dispatchCustomEvent( "start", { detail: { ... } } );
  }
}

const myInstance = new MyClass();
myInstance.addEventListener( "start", e => { ... } );