All Downloads are FREE. Search and download functionalities are using the official Maven repository.

package.eventbus.index.mjs Maven / Gradle / Ivy

The newest version!
// src/eventbus/index.ts
function EventBus() {
  const allHandlers = /* @__PURE__ */ new Map();
  return {
    on(type, handler) {
      let handlers = allHandlers.get(type);
      if (!handlers) handlers = [handler];
      else handlers.push(handler);
      allHandlers.set(type, handlers);
      return this;
    },
    off(type, handler) {
      let handlers = allHandlers.get(type);
      if (handlers) {
        handlers.splice(handlers.indexOf(handler) >>> 0, 1);
      }
      return this;
    },
    emit(type, evt) {
      let handlers = allHandlers.get(type);
      if (handlers) {
        handlers.slice().map((handler) => {
          handler(evt);
        });
      }
    },
    clear() {
      allHandlers.clear();
    }
  };
}
export {
  EventBus
};
//# sourceMappingURL=index.mjs.map




© 2015 - 2024 Weber Informatics LLC | Privacy Policy