Partial parse
Once in a while we encounter some data that's been stored away and the schema has changed over time. I'd like to parse it but also be forgiving enough to return the partially parsed schema. Something like this:
6 Replies
ArkType works based on a set of deterministic rules like TypeScript, so there's no built-in way to do what you're describing.
One option would be to iterate over the properties of your object and build a result yourself depending on which ones are valid/invalid.
Sidenote, you don't need to wrap the nested properties in
type
- you can just refer to the strings directly:
Gotcha.
Re: sidenote - Is there any performance benefit of
Re: sidenote - Is there any performance benefit of
"string.numeric.parse"
vs type("string.numeric.parse")
Yes, it is somewhat faster to initialize if you don't inline the
type
call
The difference isn't super significant though. The biggest thing is that due to a quirk of VSCode's language server, autocomplete is much slower for shallow strings like type("str")
than for nested strings like type({ foo: "str" })
, so the DX is a lot better for a few reasons without the extra wrappersCould I also get a nudge in how to get the type inference within a parser wrapper?
Thanks for sharing; still struggling with the general concept there. Might have to wait for your updates to come out and see if that helps