From c7a3f3e0782ead128280797df066e244618fbfed Mon Sep 17 00:00:00 2001 From: trans_soup <> Date: Tue, 18 Jul 2023 14:46:05 +0200 Subject: [PATCH] create readme. --- README.md | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..2224a2f --- /dev/null +++ b/README.md @@ -0,0 +1,5 @@ +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.