unis_crm/frontend/node_modules/@protobufjs/eventemitter
kangwenjing 482b9b5877 1 2026-03-19 14:27:20 +08:00
..
tests 1 2026-03-19 14:27:20 +08:00
LICENSE 1 2026-03-19 14:27:20 +08:00
README.md 1 2026-03-19 14:27:20 +08:00
index.d.ts 1 2026-03-19 14:27:20 +08:00
index.js 1 2026-03-19 14:27:20 +08:00
package.json 1 2026-03-19 14:27:20 +08:00

README.md

@protobufjs/eventemitter

npm

A minimal event emitter.

API

  • new EventEmitter()
    Constructs a new event emitter instance.

  • EventEmitter#on(evt: string, fn: function, [ctx: Object]): EventEmitter
    Registers an event listener.

  • EventEmitter#off([evt: string], [fn: function]): EventEmitter
    Removes an event listener or any matching listeners if arguments are omitted.

  • EventEmitter#emit(evt: string, ...args: *): EventEmitter
    Emits an event by calling its listeners with the specified arguments.

License: BSD 3-Clause License