yaes
v0.1.2
Published
yet another event system
Downloads
19
Maintainers
Readme
yaes
Yet another event system
Install
$ npm install yaes
Use
import * as yaes from 'yaes';
class Class extends yaes.Dispatcher { ... }
const data = { ... };
Class
.addListener('type', e => { ... })
.dispatch(new yaes.Dispatchable('type',data));