owobot/plugins/commands/eval.js

13 lines
262 B
JavaScript
Raw Normal View History

const index = require('../../index.js') // Not used in the code, but may be used by users of the command
module.exports = {
execute: (c) => {
try {
console.log(eval(c.args.join(' ')))
} catch (e) {
console.error(e)
}
},
level: 3
2024-07-27 02:39:18 -04:00
}