This commit is contained in:
pengxiaolong
2025-07-18 13:06:06 +08:00
parent 6dec463705
commit 31527ba8a6
1853 changed files with 65500 additions and 98288 deletions

View File

@@ -1,6 +1,6 @@
"use strict";
function TimeFormatting(timestamp) {
const date = new Date(timestamp * 1e3);
const date = new Date(timestamp);
date.getFullYear();
const month = String(date.getMonth() + 1).padStart(2, "0");
const day = String(date.getDate()).padStart(2, "0");