Handling `undefined` as a missing value in Schema Struct
In a
Right now
I would just like to have a
Is that doable? Maybe with
Schema.Struct({ foo: Schema.Boolean }) , is there a way to treat undefined as a missing value?Right now
decode({ foo: undefined }) returns a ParseError: Expected Boolean, actual undefinedI would just like to have a
is missing error in this case.Is that doable? Maybe with
propertySignature?