From a1fc3fb815051beb4b7030969828aa6abe469c2c Mon Sep 17 00:00:00 2001 From: Jacob Weisenburger <31667350+JacobWeisenburger@users.noreply.github.com> Date: Wed, 1 Mar 2023 13:42:33 -0600 Subject: [PATCH] commented out `toLowerCase` and `toUpperCase` because they seem not to be implemented --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 53368dd49..e33ad9a5a 100644 --- a/README.md +++ b/README.md @@ -599,11 +599,11 @@ z.string().regex(regex); z.string().startsWith(string); z.string().endsWith(string); z.string().trim(); // trim whitespace -z.string().toLowerCase(); // toLowerCase -z.string().toUpperCase(); // toLowerCase z.string().datetime(); // defaults to UTC, see below for options z.string().ip(); // defaults to IPv4 and IPv6, see below for options ``` + + > Check out [validator.js](https://github.com/validatorjs/validator.js) for a bunch of other useful string validation functions that can be used in conjunction with [Refinements](#refine).