Skip to content

Latest commit

 

History

History
26 lines (15 loc) · 286 Bytes

readme.md

File metadata and controls

26 lines (15 loc) · 286 Bytes

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));