nateiler
nateiler
Aarktype
Created by nateiler on 4/3/2025 in #questions
Partial parse
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
9 replies
Aarktype
Created by nateiler on 4/3/2025 in #questions
Partial parse
Could I also get a nudge in how to get the type inference within a parser wrapper?
function parseWrapper<t extends type.Any>(schema: t, data: unknown) {
const out = schema(data);

if (out instanceof type.errors) {
// TODO - extra processing
throw out;
}

return out;
}

const test = type({
foo: "string.numeric.parse",
bar: "number",
baz: "string.date.iso.parse"
});

// ?? data = any
const data = parseWrapper(test, { foo: '1', bar: "2", baz: "2011-10-05T14:48:00.000Z" });
function parseWrapper<t extends type.Any>(schema: t, data: unknown) {
const out = schema(data);

if (out instanceof type.errors) {
// TODO - extra processing
throw out;
}

return out;
}

const test = type({
foo: "string.numeric.parse",
bar: "number",
baz: "string.date.iso.parse"
});

// ?? data = any
const data = parseWrapper(test, { foo: '1', bar: "2", baz: "2011-10-05T14:48:00.000Z" });
9 replies
Aarktype
Created by nateiler on 4/3/2025 in #questions
Partial parse
Gotcha.
Re: sidenote - Is there any performance benefit of "string.numeric.parse" vs type("string.numeric.parse")
9 replies
Aarktype
Created by nateiler on 3/24/2025 in #questions
Reference another schema type as default?
Makes perfect sense! Thanks!
3 replies