custom event system for javascript.
Find a file
2023-07-18 15:19:01 +02:00
src change an argument name to make more sense. 2023-07-18 15:19:01 +02:00
test create some tests. 2023-07-18 14:53:59 +02:00
export.mjs init. 2023-07-18 14:41:26 +02:00
README.md create readme. 2023-07-18 14:46:05 +02:00

custom event system for js.

unlike the regular event system, this doesn't "attach" events to anything; rather, an event listener is simply a function that gets called when an event is triggered.

currently, this is synchronous; triggering an event will take as long as calling all its listeners.