I do this exact thing using async/await in my games code here
Assuming req.isLoggedIn() returns a boolean, it’s as simple as:
const isLoggedIn = await req.isLoggedIn();
if (isLoggedIn) {
// do login stuff
}
Or shorthand it to:
if (await req.isLoggedIn()) {
// do stuff
}
Make sure you have that inside an async function though!