(namePath)
| 72 | }; |
| 73 | |
| 74 | const s2: SchemaOrSchemaFn<User> = (namePath) => { |
| 75 | validate(namePath.last, ({value}) => { |
| 76 | return value.length > 0 ? undefined : {kind: 'required2'}; |
| 77 | }); |
| 78 | }; |
| 79 | |
| 80 | const f = form( |
| 81 | data, |
nothing calls this directly
no test coverage detected