Get Infos about yourself. - !me
const lib = require('lib')({token: process.env.STDLIB_SECRET_TOKEN});
let author = context.params.event.author;
let response = await lib.twitch.chat['@1.0.0'].messages.create({
channel_id: `${context.params.event.channel.id}`,
content: `🔥 Here are some Infos about you:
ID: ${author.id},
Name: ${author.display_name},
isStreamer: ${author.broadcaster},
isMod: ${author.mod},
isSubscriber: ${author.subscriber},
hasTurbo: ${author.turbo}
`,
});