UNPKG

@getsolara/solara.js

Version:

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

4 lines 307 B
module.exports = { name: "$isReplied", description: "Checks if the interaction has been replied to (or deferred). Returns true or false.", takesBrackets: false, execute: async (context, args) => { return (context.interaction?.replied || context.interaction?.deferred)?.toString() ?? "false"; } };