mirror of
https://github.com/DerTyp7/teamspeak-obs-overlay.git
synced 2025-10-29 21:02:10 +01:00
12 lines
189 B
JavaScript
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;
|
|
}
|