Skip to content

$humanizeMs

$humanizeMs will convert MS to human-readable time.

Usage

$humanizeMs[time]

Parameters

FieldTypeDescriptionRequired
timenumberTime in MS.true

Example(s)

This will return 6mon 1w 4d 16h 34m converted from 16782516189 MS:

1
client.command({
2
name: "humanizeMs",
3
code: `
4
$humanizeMs[16782516189]
5
`
6
});