Skip to content

Commit

Permalink
Update README
Browse files Browse the repository at this point in the history
  • Loading branch information
colinhacks committed Apr 17, 2024
1 parent b27e657 commit 048d3ab
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 10 deletions.
5 changes: 0 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -855,16 +855,11 @@ z.string().regex(regex);
z.string().includes(string);
z.string().startsWith(string);
z.string().endsWith(string);
<<<<<<< HEAD
z.string().datetime(); // ISO 8601; by default only `Z` timezone allowed
z.string().date(); // ISO date format (YYYY-MM-DD)
z.string().time(); // ISO time format (HH:mm:ss[.SSSSSS])
z.string().ip(); // defaults to allow both IPv4 and IPv6
=======
z.string().datetime(); // ISO 8601; default is without UTC offset, see below for options
z.string().ip(); // defaults to IPv4 and IPv6, see below for options
z.string().base64();
>>>>>>> 802b885 (Add base64 string validation)

// transformations
z.string().trim(); // trim whitespace
Expand Down
5 changes: 0 additions & 5 deletions deno/lib/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -855,16 +855,11 @@ z.string().regex(regex);
z.string().includes(string);
z.string().startsWith(string);
z.string().endsWith(string);
<<<<<<< HEAD
z.string().datetime(); // ISO 8601; by default only `Z` timezone allowed
z.string().date(); // ISO date format (YYYY-MM-DD)
z.string().time(); // ISO time format (HH:mm:ss[.SSSSSS])
z.string().ip(); // defaults to allow both IPv4 and IPv6
=======
z.string().datetime(); // ISO 8601; default is without UTC offset, see below for options
z.string().ip(); // defaults to IPv4 and IPv6, see below for options
z.string().base64();
>>>>>>> 802b885 (Add base64 string validation)

// transformations
z.string().trim(); // trim whitespace
Expand Down

0 comments on commit 048d3ab

Please sign in to comment.