Alexandra Deas

Results 3 issues of Alexandra Deas

This issue has arisen mostly out of incorrect implementation anyway but thought I would bring it to attention. It's possible to inadvertently require authentication on a call to OPTIONS with:...

Adds persistence to res.locals by using Object constructor syntax rather than Object literal syntax. This returns an object reference and means that when passed to a function the reference is...

Locals can not currently be mutated after their assignment. This causes issues when testing the following: ``` const middleware = (req, res, next) => { res.locals.myVar = "new"; next(); };...