zsydgithub 2f2f0c8be0 new hace 1 año
..
tests 2f2f0c8be0 new hace 1 año
LICENSE 2f2f0c8be0 new hace 1 año
README.md 2f2f0c8be0 new hace 1 año
index.d.ts 2f2f0c8be0 new hace 1 año
index.js 2f2f0c8be0 new hace 1 año
package.json 2f2f0c8be0 new hace 1 año

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