summaryrefslogtreecommitdiff
path: root/modules/Util.js
diff options
context:
space:
mode:
authorsanine <sanine.not@pm.me>2022-05-25 22:22:41 -0500
committersanine <sanine.not@pm.me>2022-05-25 22:22:41 -0500
commite2799cb092359038374cde25eb691d667b309383 (patch)
tree4d02e5f477ad2264e5c4a0d9e7d37f59d3fe0882 /modules/Util.js
parent5a87004c6e1ee2a0731269919c07ca211ebfd099 (diff)
add Util.js
Diffstat (limited to 'modules/Util.js')
-rw-r--r--modules/Util.js13
1 files changed, 13 insertions, 0 deletions
diff --git a/modules/Util.js b/modules/Util.js
new file mode 100644
index 0000000..cbe466d
--- /dev/null
+++ b/modules/Util.js
@@ -0,0 +1,13 @@
+function useAverage() {
+ var avg = 0;
+ let weight = 0;
+ const append = value => {
+ avg = (weight * avg) + value;
+ weight += 1;
+ avg = avg/weight;
+ }
+
+ return [() => avg, append];
+}
+
+export { useAverage };