Files
xiao/commands/edit-text/uppercase.js
T
2024-05-21 21:02:12 -04:00

23 lines
436 B
JavaScript

const Command = require('../../framework/Command');
module.exports = class UppercaseCommand extends Command {
constructor(client) {
super(client, {
name: 'uppercase',
aliases: ['to-uppercase', 'all-caps', 'caps'],
group: 'edit-text',
description: 'Converts text to uppercase.',
args: [
{
key: 'text',
type: 'string'
}
]
});
}
run(msg, { text }) {
return msg.say(text.toUpperCase());
}
};