@getsolara/solara.js
Version:
A lightweight and modular Discord bot framework built on discord.js v14, with truly optional feature packages.
9 lines • 359 B
JavaScript
module.exports = {
name: "$endsWith",
description: "Checks if text ends with a specific string. Returns true or false.",
takesBrackets: true,
execute: async (context, args) => {
if (args.length < 2) return "[Error: $endsWith requires text and the string to check]";
return args[0].endsWith(args[1]).toString();
}
};