elysiajs / eden

Fully type-safe Elysia client
MIT License
173 stars 41 forks source link

fix: treat cases where query params can be null or Dates #129

Open rhuanbarreto opened 2 months ago

rhuanbarreto commented 2 months ago

Closes #128

This PR improves on #115 once:

typeof Date === "object"
typeof null === "object"

Other values may be in place but dates and nulls are the most used ones.

rhuanbarreto commented 1 month ago

@SaltyAom any help here?