use nullish for this

This commit is contained in:
dangered wolf 2023-11-10 03:31:15 -05:00
parent f27a5d4be8
commit 44ff4765ca
No known key found for this signature in database
GPG key ID: 41E4D37680ED8B58

View file

@ -81,7 +81,7 @@ app.use('*', logger(customLogger));
app.use('*', async (c, next) => {
if (c.req.raw.cf) {
console.log(`Hello from ⛅ ${c.req.raw.cf.colo || 'UNK'}`);
console.log(`Hello from ⛅ ${c.req.raw.cf.colo ?? 'UNK'}`);
}
console.log('userAgent', c.req.header('user-agent'));
await next();