文件名称:event-utils:用ES6编写的Event utils系统
文件大小:27KB
文件格式:ZIP
更新时间:2024-06-04 17:57:02
es6 es2015 utils event emitter
事件实用程序 用ES6编写的事件工具系统。 安装 npm install event-utils 用法 import EventEmitter from "event-utils" ; const emitter = new EventEmitter ( ) ; // foo on function callback1 ( arg ) { console . log ( "callback1 called" , arg ) ; } function callback2 ( ) { console . log ( "callback2 called" ) ; } function callbackOnce ( ) { console . log ( "callback called once" ) ; } emitter . on ( "foo" , callback1 )
【文件预览】:
event-utils-main
----index.html(2KB)
----.github()
--------workflows()
----.npmignore(100B)
----test()
--------index.spec.js(4KB)
----LICENSE.md(1KB)
----README.md(5KB)
----.editorconfig(147B)
----.gitignore(33B)
----index.js(3KB)
----CHANGELOG.md(642B)
----package-lock.json(79KB)
----package.json(1015B)