removeListener (event, callback) {
    if (this.handlers[event]) {
      const index = this.handlers[event].indexOf(callback)
      if (index > -1) {
        this.handlers[event].splice(index, 1)