ZZZ-Plugin/utils/time.js
2024-07-08 13:13:22 +08:00

6 lines
168 B
JavaScript

export const converSecondsToHM = seconds => {
const d = new Date(seconds * 1000);
const hh = d.getUTCHours();
const mm = d.getUTCMinutes();
return [hh, mm];
};