UNPKG

@getsolara/solara.js

Version:

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

12 lines 525 B
module.exports = { name: "$noMentionMessage", description: "Returns the command arguments ($message) without user/role/channel/everyone mentions.", takesBrackets: false, execute: async (context, args) => { const originalMessage = context.args?.join(" ") || ""; return originalMessage .replace(/<@!?&?\d{17,19}>/g, '') .replace(/<#\d{17,19}>/g, '') .replace(/@everyone/g, 'everyone') .replace(/@here/g, 'here') .trim(); } };