UNPKG

480 BJavaScriptView Raw
1/*
2WildEmitter.js is a slim little event emitter by @henrikjoreteg largely based
3on @visionmedia's Emitter from UI Kit.
4
5Why? I wanted it standalone.
6
7I also wanted support for wildcard emitters like this:
8
9emitter.on('*', function (eventName, other, event, payloads) {
10
11});
12
13emitter.on('somenamespace*', function (eventName, payloads) {
14
15});
16
17Please note that callbacks triggered by wildcard registered events also get
18the event name as the first argument.
19*/