Last active
December 11, 2015 01:08
-
-
Save arboleya/4520783 to your computer and use it in GitHub Desktop.
MicroEvent in CoffeeScript.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
### | |
Port of MicroEvent in Coffeescript with some naming modifications | |
and a new 'once' method. | |
Original project: | |
https://github.com/jeromeetienne/microevent.js | |
### | |
class MicroEvent | |
_init:-> @_listn or @_listn = {} | |
_create:(e)-> @_init()[e] or @_init()[e] = [] | |
on:(e, f)-> (@_create e).push f | |
off:(e, f)-> (t.splice (t.indexOf f), 1) if (t = @_init()[e])? | |
once:(e, f)-> @on e, (t = => (@off e, t) && f.apply @, arguments) | |
emit:(e)-> l.apply @, ([].slice 1) for l in t if (t = @_init()[e])?; 0 | |
@mixin=(t)-> t::[p] = @::[p] for p of @::; 0 |
emit
wasn't passing arguments. I fixed that in my fork:
emit:(e, r...)-> l.apply @, r for l in t if (t = @_init()[e])?; 0
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
HELP
1 - Extending
2 - Mixing In
3 - Emitting
4 - Listening
4 - Unlistening