UNPKG

@getsolara/solara.js

Version:

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

1 lines 204 B
module.exports = { name: "$toString", description: "Converts a value to its string representation. Args: value", takesBrackets: true, execute: async (context, args) => { return String(args[0] ?? ""); } };