Joachim Viide
Joachim Viide
Sure, sounds good to me 👍
Ah, seems that this is an issue in `tagged` that's probably going to be tricky to fix. Meanwhile, I suggest you work around the issue by moving the list comprehension...
I'd like to point out that htm/mini is functionally identical to the regular htm.
`htm` and `htm/mini` implement the same "language" and produce the same output for the same given input. Their only real difference is that `htm/mini` doesn't do caching, which allows us...
I think this can be achieved with Valita's builtin features by using the strict parsing mode and inferring the `Parent` and `Child` types from the final parser: ```ts const Parent...
Validation failures are also one less-benchmarked case. Their performance also becomes relevant in cases like `union`/`oneOf`/... where some subvalidators might fail while the whole validation succeeds as a whole.
I like to spread the gospel of composable helper functions, as I believe that we should keep Valita's own API surface relatively small and provide a solid base for crafting...
That's a good idea 👍 I wonder what the API should be, as there are two cases that could be supported: 1. Making a specific property readonly (like in the...
After thinking about this for a while... I haven't reached any good conclusion. But I have some thoughts, so prepare for a half-formed braindump 🙂 ## What is .readonly()? I'm...
Do you have an example repository or site that demonstrates the problem?