mirror of
https://github.com/nx-bat/discordbot-ng.git
synced 2026-09-22 10:29:10 -04:00
12 lines
366 B
TypeScript
12 lines
366 B
TypeScript
export function msToHuman(ms: number) {
|
|
const time = {
|
|
day: Math.floor(ms / 86400000),
|
|
hour: Math.floor(ms / 3600000) % 24,
|
|
minute: Math.floor(ms / 60000) % 60,
|
|
second: Math.floor(ms / 1000) % 60,
|
|
};
|
|
return Object.entries(time)
|
|
.filter(val => val[1] !== 0)
|
|
.map(([key, val]) => `${val} ${key}${val !== 1 ? 's' : ''}`)
|
|
.join(', ');
|
|
} |