Klimatologiot/node_modules/@protobufjs/eventemitter
Klimatologi Dev ee5903bcb0 Initial commit: Atmospheric monitoring with NTP time, 1-hour pressure averaging, Firebase history table, Excel export, and WiFi buzzer alerts 2026-05-05 20:11:12 +07:00
..
tests Initial commit: Atmospheric monitoring with NTP time, 1-hour pressure averaging, Firebase history table, Excel export, and WiFi buzzer alerts 2026-05-05 20:11:12 +07:00
LICENSE Initial commit: Atmospheric monitoring with NTP time, 1-hour pressure averaging, Firebase history table, Excel export, and WiFi buzzer alerts 2026-05-05 20:11:12 +07:00
README.md Initial commit: Atmospheric monitoring with NTP time, 1-hour pressure averaging, Firebase history table, Excel export, and WiFi buzzer alerts 2026-05-05 20:11:12 +07:00
index.d.ts Initial commit: Atmospheric monitoring with NTP time, 1-hour pressure averaging, Firebase history table, Excel export, and WiFi buzzer alerts 2026-05-05 20:11:12 +07:00
index.js Initial commit: Atmospheric monitoring with NTP time, 1-hour pressure averaging, Firebase history table, Excel export, and WiFi buzzer alerts 2026-05-05 20:11:12 +07:00
package.json Initial commit: Atmospheric monitoring with NTP time, 1-hour pressure averaging, Firebase history table, Excel export, and WiFi buzzer alerts 2026-05-05 20:11:12 +07: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