ontrigger
v0.2.0
Published
light observer/eventemitter with only on and trigger methods
Downloads
3
Maintainers
Readme
ontrigger
light observer/eventemitter with only on and trigger methods
Why?
There are a lot of cases that only is used trigger and on methods of observer. This module only supply these methods.
Example:
var a = new Observer()
var x = ''
a.on('foo', function () {
x += 'fizz'
})
a.on('foo', function () {
x += 'buzz'
})
a.trigger('foo')
console.log(x) // fizzbuzz
Doc
See tests