Sends a random emoji when the command is ran!
const lib = require('lib')({token: process.env.STDLIB_SECRET_TOKEN});
const randomSmiley = require('random-smiley');
if (context.params.event.content.startsWith(`?randomemoji`)) {
randomSmiley();
randomSmiley(3);
await lib.discord.channels['@0.2.0'].messages.create({
channel_id: context.params.event.channel_id,
content: `${randomSmiley()}`,
});
}
console.log(randomSmiley);