DEV Community

Discussion on: Notes on TypeScript: Building a validation library

Collapse
 
gitaow profile image
gitaow

you can do this to make it optional:

({ title }: FieldValues) => {
if(title) {
return {title: isString(title, 1, 100)};
} else {
return true;
}
}