I made a function to search a user by email id. I'm calling that function in an async function using await and assigning the returned value to or constant/variable but getting undefined on printing the constant/variable
function search(email) { sql = `SELECT email FROM users WHERE email = '${email}'`; db.query(sql, (err, res) => { if (err) { console.log(err); } else { return res[0].email; } }) } const auth = async (req, res, next) => { try { const token = req.header('Authorization').replace('Bearer', ''); const decoded = jwt.verify(token, 'catisdoguniversaltruth'); const user = await search(decoded._id); console.log(user); if (!user) { throw new Error(); } next(); } catch (e) { res.status(401).send("Not Authenticated, Please login"); } }; module.exports = auth;