Caleb Adewole Erioluwa
Caleb Adewole Erioluwa
I was trying to validate if validation result from custom validation was true and it seems from the description of what the `toBoolean` does is to sanitize values to be...
But I think `isBoolean` is not a better way of naming the function but rather `isTruthy` or `isFalsy` since we might be validating a payload property and asking the question...
I am ready to start reviewing the source code
@n1rjal please can I also contribute to this issue since it is pending for days now
```js app.delete('/managetask/:id', async (req, res) => { const { id } = req.params; // await Task.findOneAndDelete(id); console.log(id); res.redirect('/managetask'); }); ``` from the above snippet you got the id from the...
Brad, why don't you try ensuring all the data to be render ejs are present using a wrapper /validation function to check if none of the object property are null...