findOne
zwraca obietnicę
, musisz poczekać, aż odczyta wartości.
zmień swoją funkcję na to:
module.exports = async function (req, res, next) {
const headToken = req.header('token');
const token = await Token.findOne({ token: headToken })
...
}