kukuheaven

Results 1 issues of kukuheaven

const endTime = dayjs.unix(1716998400).add(32, 'day'); // 2024/7/1/ 00:00:00 const now = dayjs(); // 2024/5/30 13:50:50 const duration = dayjs.duration(endTime.diff(now)); console.log(duration.hours()); // output is "0" which should be "10" // when...