UNPKG

@getsolara/solara.js

Version:

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

4 lines 236 B
module.exports = { name: "$cacheSize", description: "Returns the number of items in the bot's simple cache.", takesBrackets: false, execute: async (context, args) => { return context.client.cache?.size.toString() ?? "0"; } };