Releases: Olical/EventEmitter
Swapped to The Unlicense
README improvements and merging PRs
v4.2.9
v4.2.8
Fixing Android 2.2 RegExp type check
@machard fixed a bug in an older version of the Android browser to do with RegExp type checking.
Adding component support.
Now there is a component.json
, as requested by desandro/masonry#426.
Merging jstayton pull requests
Added removeAllListeners alias
As mentioned in issue #58, removeAllListeners
has now been added as an alias to removeEvent
to conform to the node API. Not that I'm aiming to conform to the node API, but if someone has some code that will work with both because of this change, then great.
addOnceListener infinite recursion fix
You could get once events into an infinite recursion fairly easily, that's a very bad thing. You could still do it with the return based once events if you tried, but there's nothing I can do about that really.
So this fixes issue #54. Enjoy!
Better method aliasing
@nathggns submitted a pull request that added better aliasing. It will now keep the alias even if you override the default implementation of what it was pointing to.