2019-09-13 20:02:41 +00:00
|
|
|
const { clean } = require("../utils/misc.js");
|
|
|
|
|
|
|
|
exports.run = async (message, args) => {
|
2019-11-15 16:59:50 +00:00
|
|
|
if (message.author.id !== process.env.OWNER) return `${message.author.mention}, only the bot owner can use eval!`;
|
2019-09-13 20:02:41 +00:00
|
|
|
const code = args.join(" ");
|
|
|
|
try {
|
|
|
|
const evaled = eval(code);
|
|
|
|
const cleaned = await clean(evaled);
|
2020-03-22 12:56:50 +00:00
|
|
|
const sendString = `\`\`\`js\n${cleaned}\n\`\`\``;
|
|
|
|
if (sendString.length >= 2000) {
|
2020-04-12 19:51:48 +00:00
|
|
|
return {
|
|
|
|
text: "The result was too large, so here it is as a file:",
|
2020-03-27 13:25:04 +00:00
|
|
|
file: cleaned,
|
2020-03-22 12:56:50 +00:00
|
|
|
name: "result.txt"
|
2020-04-12 19:51:48 +00:00
|
|
|
};
|
2020-03-27 13:25:04 +00:00
|
|
|
} else {
|
|
|
|
return sendString;
|
2020-03-22 12:56:50 +00:00
|
|
|
}
|
2019-09-13 20:02:41 +00:00
|
|
|
} catch (err) {
|
|
|
|
return `\`ERROR\` \`\`\`xl\n${await clean(err)}\n\`\`\``;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
exports.aliases = ["run"];
|
2020-07-06 20:19:30 +00:00
|
|
|
exports.category = 8;
|
2019-12-05 16:58:46 +00:00
|
|
|
exports.help = "Executes JavaScript code";
|
|
|
|
exports.params = "[code]";
|