import { clean } from "../../utils/misc.js"; import Command from "../../classes/command.js"; class DecodeCommand extends Command { async run() { if (this.args.length === 0) return "You need to provide a string to decode!"; const b64Decoded = Buffer.from(this.args.join(" "), "base64").toString("utf8"); return `\`\`\`\n${await clean(b64Decoded)}\`\`\``; } static description = "Decodes a Base64 string"; static aliases = ["b64decode", "base64decode"]; static arguments = ["[text]"]; } export default DecodeCommand;