First update.

This commit is contained in:
2025-10-11 14:45:08 +08:00
commit 6aa8fb818a
22 changed files with 4036 additions and 0 deletions

8
GetLocalTime.js Normal file
View File

@@ -0,0 +1,8 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.getLocalTime = getLocalTime;
function getLocalTime() {
const now = new Date();
now.setHours(now.getHours() + 8);
return now;
}