fix date() formatter

This commit is contained in:
Nuno Duque Nunes 2026-06-12 23:24:15 +01:00
parent 63e3a63a7c
commit a4d772b81d

View file

@ -140,7 +140,7 @@ function date(date: Date | string, fmt: string = "dd/MM/YYYY"): string {
.replace("YYYY", String(d.getFullYear()))
.replace("HH", String(d.getHours()).padStart(2, "0"))
.replace("mm", String(d.getMinutes()).padStart(2, "0"));
},
}
// ─── Bringer formatters ────────────────────────────────────────────────────────