mirror of
https://github.com/arthur-pbty/xiao.git
synced 2026-06-10 19:04:42 +02:00
String Changes, Don't register tons of defaults
This commit is contained in:
@@ -22,7 +22,7 @@ module.exports = class ReverseCommand extends commando.Command {
|
||||
}
|
||||
console.log(`[Command] ${message.content}`);
|
||||
const stringToReverse = args.text;
|
||||
const reversed = stringToReverse.split("").reverse().join("");
|
||||
const reversed = stringToReverse.split('').reverse().join('');
|
||||
return message.say(reversed);
|
||||
}
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user