UNPKG

@getsolara/solara.js

Version:

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

7 lines 310 B
module.exports = { name: "$sentenceCase", description: "Converts text to sentence case. Args: text", takesBrackets: true, execute: async (context, args) => { if (!args[0]) return ""; const text = args[0].toLowerCase(); return text.charAt(0).toUpperCase() + text.slice(1); } };