Files
teamspeak-obs-overlay/js/utils.js
2022-10-25 18:27:02 +02:00

12 lines
189 B
JavaScript

function getClientsInChannel(channel) {
let result = [];
clients.forEach((e) => {
if (e.channel.id == channel.id) {
result.push(e);
}
});
console.log(result);
return result;
}