Add examples

This commit is contained in:
Dragon Fire
2024-05-16 17:16:00 -04:00
parent 9d00180cb3
commit 986d5d90fb
28 changed files with 138 additions and 32 deletions
+5
View File
@@ -37,4 +37,9 @@ module.exports = class TimezoneType extends Argument {
}
return null;
}
example() {
const zones = moment.tz.names();
return zones[Math.floor(Math.random() * zones.length)];
}
};