You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A small niche use case but still a valid one would be adding support for validating CRON schedule strings.
Example
z.string().cron();// ORz.cron();
It is worth acknowledging that adding support for this format would likely add more complexity to manage as it would likely be another advanced regex pattern to manage vs users just being recommended to use z.string().regex(/.../) themselves.
The text was updated successfully, but these errors were encountered:
A small niche use case but still a valid one would be adding support for validating CRON schedule strings.
Example
It is worth acknowledging that adding support for this format would likely add more complexity to manage as it would likely be another advanced regex pattern to manage vs users just being recommended to use
z.string().regex(/.../)
themselves.The text was updated successfully, but these errors were encountered: