style: format (#2925)

This commit is contained in:
ITOH
2023-04-01 02:46:46 +02:00
committed by GitHub
parent 4d3a2f7665
commit 05fc3fbeba
85 changed files with 670 additions and 828 deletions

View File

@@ -1,51 +1,56 @@
const Discord = require("discordeno.js");
const Discord = require('discordeno.js')
const BaseCommand = require("../../../Structures/BaseCommand.js");
const BaseCommand = require('../../../Structures/BaseCommand.js')
class evalcommand extends BaseCommand {
static name = "eval";
static description = "danger !!!";
static category = "Developer";
static slash = { name: "eval", category: "dev" };
static name = 'eval'
static description = 'danger !!!'
static category = 'Developer'
static slash = { name: 'eval', category: 'dev' }
constructor(data) {
super(data);
super(data)
}
async execute() {
if (!this.client.config.owners.includes(String(this.user.id))) return;
if (!(this.args.length > 0)) return this.reply({ content: "**You must provide something to eval!**" });
if (!this.client.config.owners.includes(String(this.user.id))) return
if (!(this.args.length > 0)) return this.reply({ content: '**You must provide something to eval!**' })
const inputOfEval = this.args.join(" ");
let outputOfEval;
let typeOfEval;
const inputOfEval = this.args.join(' ')
let outputOfEval
let typeOfEval
try {
if (this.args.includes("await")) {
outputOfEval = await eval("(async () => {" + inputOfEval + "})()");
if (this.args.includes('await')) {
outputOfEval = await eval('(async () => {' + inputOfEval + '})()')
} else {
outputOfEval = await eval(inputOfEval);
outputOfEval = await eval(inputOfEval)
}
} catch (e) {
outputOfEval = e.message;
typeOfEval = e.name;
outputOfEval = e.message
typeOfEval = e.name
}
const seen = [];
outputOfEval = typeof outputOfEval === "object"
? JSON.stringify(outputOfEval, (_, value) => {
if (value == `Bot ${this.client.config.token}`) return `BOT_TOKEN`;
if (typeof value === "bigint") value = value.toString();
if (typeof value === "object" && value !== null) {
if (seen.indexOf(value) !== -1) return;
else seen.push(value);
}
return value;
}, 1)
: outputOfEval;
const seen = []
outputOfEval =
typeof outputOfEval === 'object'
? JSON.stringify(
outputOfEval,
(_, value) => {
if (value == `Bot ${this.client.config.token}`) return `BOT_TOKEN`
if (typeof value === 'bigint') value = value.toString()
if (typeof value === 'object' && value !== null) {
if (seen.indexOf(value) !== -1) return
else seen.push(value)
}
return value
},
1,
)
: outputOfEval
const embed = new Discord.Embed()
.addField({ name: "Input", value: "```js\n" + inputOfEval + "```" })
.addField({ name: "Output", value: "```json\n" + `${outputOfEval}`.slice(0, 1000) + "```" });
this.reply({ embeds: [embed] });
.addField({ name: 'Input', value: '```js\n' + inputOfEval + '```' })
.addField({ name: 'Output', value: '```json\n' + `${outputOfEval}`.slice(0, 1000) + '```' })
this.reply({ embeds: [embed] })
}
}
module.exports = evalcommand;
module.exports = evalcommand

View File

@@ -1,19 +1,19 @@
const BaseCommand = require("../../../Structures/BaseCommand.js");
const BaseCommand = require('../../../Structures/BaseCommand.js')
class reloadcommand extends BaseCommand {
static name = "reload";
static description = "Reloads a Command";
static category = "Developer";
static slash = { name: "reload", category: "dev" };
static name = 'reload'
static description = 'Reloads a Command'
static category = 'Developer'
static slash = { name: 'reload', category: 'dev' }
constructor(data) {
super(data);
super(data)
}
async execute() {
if (!this.client.config.owners.includes(String(this.user.id))) return;
if (!this.args[0]) return this.reply({ content: "**You must provide a command to reload!**" });
const op = this.client.commands.reloadCommand(this.args[0]);
if (!op) return this.reply({ content: "**That command doesn't exist!**" });
return this.reply({ content: "**Reloaded Command: `" + this.args[0] + "`**" });
if (!this.client.config.owners.includes(String(this.user.id))) return
if (!this.args[0]) return this.reply({ content: '**You must provide a command to reload!**' })
const op = this.client.commands.reloadCommand(this.args[0])
if (!op) return this.reply({ content: "**That command doesn't exist!**" })
return this.reply({ content: '**Reloaded Command: `' + this.args[0] + '`**' })
}
}
module.exports = reloadcommand;
module.exports = reloadcommand