aboutsummaryrefslogtreecommitdiff
path: root/static/lib.js
diff options
context:
space:
mode:
Diffstat (limited to 'static/lib.js')
-rw-r--r--static/lib.js10
1 files changed, 10 insertions, 0 deletions
diff --git a/static/lib.js b/static/lib.js
index 46236411..ab279353 100644
--- a/static/lib.js
+++ b/static/lib.js
@@ -12,6 +12,16 @@ HTMLElement.prototype.addEventListener = function (name, proc) {
};
+
+/* list of lists -> list of tuples */
+function zip(...args) {
+ // console.log(args);
+ if (args === []) return [];
+ return [...Array(Math.min(...args.map(x => x.length))).keys()]
+ .map((_, i) => args.map(lst => lst[i]));
+}
+
+
/* ----- Date Extensions ---------------------------- */
/*