# API Each of the methods listed in the API are accessed through an instance of EventEmitter. You can create an instance with `var ee = new EventEmitter();`. Then you can call API methods from `ee`, for example `ee.emitEvent('foo');`. You may also be interested in [the guide](https://github.com/Olical/EventEmitter/blob/master/docs/guide.md) which highlights some key features of EventEmitter and how to use them. It is a broad overview of the script whereas this is concise information about each method in the API. ## EventEmitter
Class for managing events.
Can be extended to provide event functionality in other classes.
Returns the listener array for the specified event.
Will initialise the event object and listener arrays if required.
Will return an object if you use a regex search. The object contains keys for each matched event. So /ba[rz]/ might return an object containing bar and baz. But only if you have either defined them with defineEvent or added some listeners to them.
Each property in the object response is an array of listener functions.
Takes a list of listener objects and flattens it into a list of listener functions.
* **param** (`Object[]`) _listeners_ - Raw listener objects. * **return** (`Function[]`) - Just the listener functions. ## getListenersAsObjectFetches the requested listeners via getListeners but will always return the results inside an object. This is mainly for internal use but others may find it useful.
* **param** (`String` | `RegExp`) _evt_ - Name of the event to return the listeners from. * **return** (`Object`) - All listener functions for an event in an object. ## addListenerAdds a listener function to the specified event.
The listener will not be added if it is a duplicate.
If the listener returns true then it will be removed after it is called.
If you pass a regular expression as the event name then the listener will be added to all events that match it.
Alias of addListener
## addOnceListenerSemi-alias of addListener. It will add a listener that will be
automatically removed after its first execution.
Alias of addOnceListener.
## defineEventDefines an event name. This is required if you want to use a regex to add a listener to multiple events at once. If you don't do this then how do you expect it to know what event to add to? Should it just add to every possible match for a regex? No. That is scary and bad.
You need to tell it what event names should be matched by a regex.
Uses defineEvent to define multiple events.
* **param** (`String[]`) _evts_ - An array of event names to define. * **return** (`Object`) - Current instance of EventEmitter for chaining. ## removeListenerRemoves a listener function from the specified event.
When passed a regular expression as the event name, it will remove the listener from all events that match it.
Alias of removeListener
## addListenersAdds listeners in bulk using the manipulateListeners method.
If you pass an object as the first argument you can add to multiple events at once. The object should contain key value pairs of events and listeners or listener arrays. You can also pass it an event name and an array of listeners to be added.
You can also pass it a regular expression to add the array of listeners to all events that match it.
Yeah, this function does quite a bit. That's probably a bad thing.
Removes listeners in bulk using the manipulateListeners method.
If you pass an object as the first argument you can remove from multiple events at once. The object should contain key value pairs of events and listeners or listener arrays.
You can also pass it an event name and an array of listeners to be removed.
You can also pass it a regular expression to remove the listeners from all events that match it.
Edits listeners in bulk. The addListeners and removeListeners methods both use this to do their job. You should really use those instead, this is a little lower level.
The first argument will determine if the listeners are removed (true) or added (false).
If you pass an object as the second argument you can add/remove from multiple events at once. The object should contain key value pairs of events and listeners or listener arrays.
You can also pass it an event name and an array of listeners to be added/removed.
You can also pass it a regular expression to manipulate the listeners of all events that match it.
Removes all listeners from a specified event.
If you do not specify an event then all listeners will be removed.
That means every event will be emptied.
You can also pass a regex to remove all events that match it.
Alias of removeEvent.
Added to mirror the node API.
## emitEventEmits an event of your choice.
When emitted, every listener attached to that event will be executed.
If you pass the optional argument array then those arguments will be passed to every listener upon execution.
Because it uses apply
, your array of arguments will be passed as if you wrote them out separately.
So they will not arrive within the array on the other side, they will be separate.
You can also pass a regular expression to emit to all events that match it.
Alias of emitEvent
## emitSubtly different from emitEvent in that it will pass its arguments on to the listeners, as opposed to taking a single array of arguments to pass on.
As with emitEvent, you can pass a regex in place of the event name to emit to all events that match it.
Sets the current value to check against when executing listeners. If a
listeners return value matches the one set here then it will be removed
after execution. This value defaults to true.
Reverts the global {@link EventEmitter} to its previous value and returns a reference to this version.
* **return** (`Function`) - Non conflicting EventEmitter class.