From aafc838c0a1e4c08636c950d0d4fa9fe4018e046 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hugo=20H=C3=B6rnquist?= Date: Fri, 16 Oct 2020 23:03:19 +0200 Subject: Minor JS cleanup. --- static/lib.js | 14 ++++++++++++++ 1 file changed, 14 insertions(+) (limited to 'static/lib.js') diff --git a/static/lib.js b/static/lib.js index 3c11e23f..79e48f1e 100644 --- a/static/lib.js +++ b/static/lib.js @@ -131,4 +131,18 @@ function format_date(date, str) { Object.prototype.format = function () { return this; } /* any number of arguments */ Date.prototype.format = function (str) { return format_date (this, str); } +/* + * Finds the first element of the DOMTokenList whichs value matches + * the supplied regexp. Returns a pair of the index and the value. + */ +DOMTokenList.prototype.find = function (regexp) { + let entries = this.entries(); + let entry; + while (! (entry = entries.next()).done) { + if (entry.value[1].match(regexp)) { + return entry.value; + } + } +} + const xcal = "urn:ietf:params:xml:ns:icalendar-2.0"; -- cgit v1.2.3