@getsolara/solara.js
Version:
A lightweight and modular Discord bot framework built on discord.js v14, with truly optional feature packages.
1 lines • 285 B
JavaScript
module.exports = { name: "$toBoolean", description: "Converts a value to boolean ('true'/'false'). Args: value", takesBrackets: true, execute: async (context, args) => { const val = args[0]?.toLowerCase().trim(); return (val === 'true' || val === 'yes' || val === '1').toString(); } };