Prefix command that will put the clap emote between all words in the given sentence.
const lib = require('lib')({token: process.env.STDLIB_SECRET_TOKEN}),
{ guild_id, channel_id, content } = context.params.event;
let array = [];
let str = content.split(' ').slice(1);
for (let i = 0; i < str.length; i++) {
array.push(`:clap:${str[i]}`);
}; await lib.discord.channels['@0.2.2'].messages.create({ channel_id: channel_id, content: `${array.join('')}:clap:` });