UNPKG

@getsolara/solara.js

Version:

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

9 lines 349 B
module.exports = { name: "$isNumber", description: "Checks if the provided text is a valid number. Args: text", takesBrackets: true, execute: async (context, args) => { if (!args[0]) return "false"; // Empty string is not a number return (!isNaN(parseFloat(args[0])) && isFinite(args[0])).toString(); } };