component-emitter2

WebJar for component-emitter2

License

License

MIT
GroupId

GroupId

org.webjars.npm
ArtifactId

ArtifactId

component-emitter2
Last Version

Last Version

1.3.5
Release Date

Release Date

Type

Type

jar
Description

Description

component-emitter2
WebJar for component-emitter2
Project URL

Project URL

http://webjars.org
Source Code Management

Source Code Management

https://github.com/nxtedition/emitter

Download component-emitter2

How to add to project

<!-- https://jarcasting.com/artifacts/org.webjars.npm/component-emitter2/ -->
<dependency>
    <groupId>org.webjars.npm</groupId>
    <artifactId>component-emitter2</artifactId>
    <version>1.3.5</version>
</dependency>
// https://jarcasting.com/artifacts/org.webjars.npm/component-emitter2/
implementation 'org.webjars.npm:component-emitter2:1.3.5'
// https://jarcasting.com/artifacts/org.webjars.npm/component-emitter2/
implementation ("org.webjars.npm:component-emitter2:1.3.5")
'org.webjars.npm:component-emitter2:jar:1.3.5'
<dependency org="org.webjars.npm" name="component-emitter2" rev="1.3.5">
  <artifact name="component-emitter2" type="jar" />
</dependency>
@Grapes(
@Grab(group='org.webjars.npm', module='component-emitter2', version='1.3.5')
)
libraryDependencies += "org.webjars.npm" % "component-emitter2" % "1.3.5"
[org.webjars.npm/component-emitter2 "1.3.5"]

Dependencies

There are no dependencies for this project. It is a standalone project that does not depend on any other jars.

Project Modules

There are no modules declared in this project.

Emitter

Event emitter component.

Installation

$ npm install component-emitter2

API

Emitter(obj)

The Emitter may also be used as a mixin. For example a "plain" object may become an emitter, or you may extend an existing prototype.

As an Emitter instance:

var Emitter = require('emitter');
var emitter = new Emitter;
emitter.emit('something');

As a mixin:

var Emitter = require('emitter');
var user = { name: 'tobi' };
Emitter(user);

user.emit('im a user');

As a prototype mixin:

var Emitter = require('emitter');
Emitter(User.prototype);

Emitter#on(event, fn)

Register an event handler fn.

Emitter#once(event, fn)

Register a single-shot event handler fn, removed immediately after it is invoked the first time.

Emitter#off(event, fn)

  • Pass event and fn to remove a listener.
  • Pass event to remove all listeners on that event.
  • Pass nothing to remove all listeners on all events.

Emitter#emit(event, ...)

Emit an event with variable option args.

Emitter#listeners(event)

Return an array of callbacks, or an empty array.

Emitter#hasListeners(event)

Check if this emitter has event handlers.

Emitter#eventNames()

Returns an array listing the events for which the emitter has registered listeners.

License

MIT

org.webjars.npm

nxtedition

Versions

Version
1.3.5