Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- commands.on(
- 'reverse',
- (args) => ({
- input: args.string()
- }),
- async (message, { input }) => {
- await message.reply(
- input
- .split('')
- .reverse()
- .join('')
- );
- }
- );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement