Samuel José Haro

Results 3 comments of Samuel José Haro

CanIUse has updated the table to include Opera 98: ![image](https://user-images.githubusercontent.com/80614701/235712365-544521a6-08a0-40db-8d6b-5cc02ba66998.png)

Facing same problem here. I'm doing this: ```ts app.post( "/signup", checkExact([ body("addresses").isObject(), body("addresses.*.number").isInt(), body("siblings.*.name").notEmpty(), ]), (req, res) => { validationResult(req).throw() res.json({ msg: "Sucess", }) } ) ``` but there is...

> Damn, I actually solved it with some help from a friend. If anyone is looking for something similar, you my solution [here](https://stackoverflow.com/a/75821834/10100637) Actually, the code zooms to the indicated...