UNPKG

@getsolara/solara.js

Version:

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

1 lines 320 B
module.exports = { name: "$toNumber", description: "Converts a value to a number. Args: value", takesBrackets: true, execute: async (context, args) => { if(args[0] === undefined) return "[Error: Requires value]"; const num = Number(args[0]); return isNaN(num) ? "[Error: Cannot convert to number]" : num.toString(); } };