Files
teamspeak-obs-overlay/js/utils.js

11 lines
187 B
JavaScript

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