Added "hour" to getTsNow()

This commit is contained in:
2025-11-07 00:24:03 +00:00
parent c6ec442c2b
commit 8fee748837

View File

@@ -34,6 +34,7 @@ export function getTsNow() {
year: now.getFullYear(), year: now.getFullYear(),
month: now.getMonth() + 1, month: now.getMonth() + 1,
day: now.getDate(), day: now.getDate(),
hour: now.getHours(),
minute: now.getMinutes(), minute: now.getMinutes(),
seconds: now.getSeconds() seconds: now.getSeconds()
} }