Files
CardServer/GetLocalTime.js

9 lines
224 B
JavaScript
Raw Permalink Normal View History

2025-10-11 14:45:08 +08:00
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.getLocalTime = getLocalTime;
function getLocalTime() {
const now = new Date();
now.setHours(now.getHours() + 8);
return now;
}