Skip to content

$minute

$minute will return the current minute in UTC.

Usage

$minute

Example(s)

This will returns the current minute:

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

You can change the timezone using $timezone:

1
client.command({
2
name: "minute",
3
code: `
4
$minute
5
$timezone[America/New_York]
6
` // returns current minute in New York
7
});