Files
xiao/commands/edit-text/lowercase.js
T
2020-04-09 14:37:24 -04:00

25 lines
511 B
JavaScript

const Command = require('../../structures/Command');
module.exports = class LowercaseCommand extends Command {
constructor(client) {
super(client, {
name: 'lowercase',
aliases: ['to-lowercase'],
group: 'edit-text',
memberName: 'lowercase',
description: 'Converts text to lowercase.',
args: [
{
key: 'text',
prompt: 'What text would you like to convert to lowercase?',
type: 'string'
}
]
});
}
run(msg, { text }) {
return msg.say(text.toLowerCase());
}
};