UNPKG

@getsolara/solara.js

Version:

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

4 lines 272 B
module.exports = { name: "$wordCount", description: "Counts the number of words in text. Args: text", takesBrackets: true, execute: async (context, args) => { if (!args[0]) return "0"; return (args[0].trim().split(/\s+/).filter(Boolean).length).toString(); } };