-
-
Save derhuerst/5433f5ee3342a1de6d81 to your computer and use it in GitHub Desktop.
A minimalistic CoffeeScript event emitter.
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
# A minimalistic CoffeeScript event emitter. | |
# Jannis R <[email protected]> | |
# https://gist.github.com/derhuerst/5433f5ee3342a1de6d81 | |
class EventEmitter | |
constructor: -> | |
@_events = {} | |
emit: (event, args...) -> | |
handler args... for handler in @_events[event] | |
return this | |
on: (event, handler) -> | |
@_events[event] ?= [] | |
@_events[event].push handler | |
return this | |
off: (event, handler) -> | |
@_events[event].splice @_events[event].indexOf(handler), 1 | |
return this | |
once: (event, handler) -> | |
fn = => | |
@off event, fn | |
handler arguments... | |
@on event, fn | |
return this |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment