async function getAllPeersIds()

in src/global_map.js [11:14]


async function getAllPeersIds() {
  const allPeers = await Participants.getAllOtherParticipants()
  return allPeers.map(peer => peer.id)
}