ontrigger

0.2.0 • Public • Published

ontrigger

light observer/eventemitter with only on and trigger methods

Travis CI

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

Package Sidebar

Install

npm i ontrigger

Weekly Downloads

0

Version

0.2.0

License

MIT

Last publish

Collaborators

  • xgbuils