v1.7.3
- 3e46332 Added the event "globaluserstate". See the Twitch docs on the tags for the GLOBALUSERSTATE IRC command. These tags have always been available via
client.globaluserstate
after the command but hasn't been emitted.
client.on('globaluserstate', tags => {
console.log('Hello, I am', tags['display-name']); // Hello, I am Alca
});