1.0.1 • Published 11 months ago

event-action v1.0.1

Weekly downloads
-
License
ISC
Repository
github
Last release
11 months ago

event-action

一个简单的发布订阅器

install

npm install  event-action --save

usage

import Events from 'event-action'

const events = new Events();

// 订阅
events.on('event', function (args) {
 //
});

// 发布
events.emit('event', 'args');

// 关闭
events.off('event', function (args) {
 //
});
1.0.1

11 months ago

1.0.0

11 months ago