UNPKG

@getsolara/solara.js

Version:

A lightweight and modular Discord bot framework built on discord.js v14, with truly optional feature packages.

4 lines 261 B
module.exports = { name: "$messageTimestamp", description: "Returns the creation timestamp (in ms) of the triggering message.", takesBrackets: false, execute: async (context, args) => { return context.message?.createdTimestamp?.toString() || ""; } };