ievent
v1.0.8
Published
a very light JavaScript Event System
Downloads
3
Readme
Event
a very light JavaScript Event System
install
npm install ievent -S
usage
import iEvent from 'ievent'
iEvent.on("hello", (name, age) => {
console.log("hello " + name + " age=" + age);
});
iEvent.on("hello", (name, age) => {
console.log("hello " + name + " age=" + age + "...");
});
iEvent.once('hi',name=>{
console.log('hi '+name)
})
// Event.off("hello");
iEvent.emit("hello", "flypie", 21);
iEvent.emit('hi','flypie')