Connor Love

Results 2 comments of Connor Love

@itaisteinherz It doesn't look like `@hapi/somever` is compatible with how yall are doing version checking.

You can reimplement that `status` token yourself: ```js morgan.token(`status`, (req, res) => { const status = (typeof res.headersSent !== `boolean` ? Boolean(res._header) : res.headersSent) ? res.statusCode : undefined // get...