async function addCurrentParticipants()

in src/global_map.js [23:28]


async function addCurrentParticipants(map, participantsStartValue) {
  const allParticipantsIds = await getAllParticipantsIds()
  for (const participantId of allParticipantsIds) {
    await map.set(participantId, participantsStartValue)
  }
}