async function checkStreamStatus(channelName) { const response = await fetch(`https://api.twitch.tv/helix/streams?user_login=${channelName}`, { headers: { 'Authorization': 'Bearer ' + '', 'Client-Id': '', }}); const json = await response.json(); const type = json.data[0]?.type; status = type; //console.log("worked " + status) if (status === "live") { return true; } else { return false; } }Mi cerebro no podía manejar cómo funciona la función asíncrona, incluso vi 3 videos y pasé 3 horas. ¿Cómo puedo devolver verdadero y falso de esta función?