emit (event, ...args) {
    if (this.handlers[event]) {
      this
        .handlers[event]
        .forEach((handler) => handler.apply(this, args))