nodbot/dot-commands/spongebob.js
Skylar Grant 0122e36781 oop
2021-09-23 20:08:29 -04:00

11 lines
329 B
JavaScript

const fn = require('../functions.js');
const config = require('../config.json');
module.exports = {
name: 'spongebob',
description: 'SpOnGeBoB-iFy AnYtHiNg AuToMaTiCaLly',
usage: '<text to convert>.spongebob',
execute(message, commandData) {
message.reply(`@${message.author.username}: ${fn.spongebob(commandData)}`);
}
}