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