Fix lint issues

d30fc5d165c0fedb4929b95e7ff4eb3267939cfb

Wolfsblvt <wolfsblvt@gmail.com>

2 files changed, +2 -2Showing whitespace changes
public/scripts/RossAscends-mods.js+1 -1
@@ -161,7 +161,7 @@ export function humanizedDateTime() {
161161 const dt = {
162162 year: now.getFullYear(), month: now.getMonth() + 1, day: now.getDate(),
163163 hour: now.getHours(), minute: now.getMinutes(), second: now.getSeconds(),
164164 };
165165 for (const key in dt) {
166166 dt[key] = dt[key].toString().padStart(2, '0');
167167 }
public/scripts/utils.js+1 -1
@@ -756,7 +756,7 @@ function parseTimestamp(timestamp) {
756756
757757 let iso8601;
758758 for (const x of dtFmt) {
759759 let rgxMatch = timestamp.match(x.pattern);
760760 if (!rgxMatch) continue;
761761 iso8601 = x.callback(...rgxMatch);
762762 break;