Detalhes do pacote

power-ee

luckydrq100.1.2

[![NPM version][npm-image]][npm-url] [![build status][travis-image]][travis-url] [![Test coverage][coveralls-image]][coveralls-url]

delegate, listenTo, EventEmitter

readme (leia-me)

power-ee

NPM version build status Test coverage

Enhance node's EventEmitter.

Install

$ npm install power-ee

Example

You can see the test cases.

Api

listenTo(target, events[, callback])

  • target(EventEmitter): required
  • events(String|Array): required
  • callback(Function): optional. Called each time the event of the list emitted.

delegate(target, events[, callback])

  • target(EventEmitter): required
  • events(String|Array): required
  • callback(Function): optional. Called each time the event of the list emitted.

Note: The difference between #delegate and #listenTo is that the source ee object will emit the same event as the target just emits.

undelegate(target[, events])

alias: stopListening

  • target(EventEmitter): required
  • events(String|Array): optional. If omitted, all the events related will be removed.

Lisence

MIT