From 999a5f60244fb80789d7021290cf6783cd975869 Mon Sep 17 00:00:00 2001 From: nikelborm <evadev@duck.com> Date: Mon, 27 Jan 2025 11:33:56 +0300 Subject: [PATCH] Updated zod to schema comparison: added Schema.URL --- schema/comparisons.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/schema/comparisons.md b/schema/comparisons.md index 2f621e1ad1b..d8b0c8da31b 100644 --- a/schema/comparisons.md +++ b/schema/comparisons.md @@ -221,7 +221,7 @@ S.String.pipe(S.maxLength(5)) S.String.pipe(S.minLength(5)) S.String.pipe(S.length(5)) // S.string().email() // No equivalent -// S.string().url() // No equivalent +S.URL // S.string().emoji() // No equivalent S.UUID // S.string().nanoid() // No equivalent