$minute
$minute will return the current minute in UTC.
Usage
$minuteExample(s)
This will returns the current minute:
1client.command({2 name: "minute",3 code: `4 $minute5 `6});You can change the timezone using $timezone:
1client.command({2 name: "minute",3 code: `4 $minute5 $timezone[America/New_York]6 ` // returns current minute in New York7});