grpc-tads6/node_modules/@protobufjs/eventemitter
Luiz F Picolo b5967b13ac Commit inicial 2024-06-05 20:46:09 -04:00
..
tests Commit inicial 2024-06-05 20:46:09 -04:00
LICENSE Commit inicial 2024-06-05 20:46:09 -04:00
README.md Commit inicial 2024-06-05 20:46:09 -04:00
index.d.ts Commit inicial 2024-06-05 20:46:09 -04:00
index.js Commit inicial 2024-06-05 20:46:09 -04:00
package.json Commit inicial 2024-06-05 20:46:09 -04: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