UNPKG

@getsolara/solara.js

Version:

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

7 lines 339 B
module.exports = { name: "$cacheHas", description: "Checks if a key exists in the simple in-memory cache. Args: key", takesBrackets: true, execute: async (context, args) => { if (!args[0]) return "[Error: $cacheHas requires key]"; const key = args[0]; return context.client.cache.has(key).toString(); } };