From 701b8d38a9b456a91ec6600209a7edb5ff4f8219 Mon Sep 17 00:00:00 2001 From: wellgenio Date: Sat, 24 Aug 2024 09:06:48 -0300 Subject: [PATCH] update document --- README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.md b/README.md index 665287f..6ee2458 100644 --- a/README.md +++ b/README.md @@ -87,7 +87,12 @@ Note, the validate method returns a list of errors with all validation exception Here’s a complete list of available validators you can use: +- **equalTo**: checks if value is equal to another value. +- **greaterThan**: Checks if number is greater than minimum value. +- **lessThan**: Checks if the number is less than max value. - **notEmpty**: Checks if a string is not empty. +- **matchesPattern**: Checks if the a string matches the pattern (Regex). +- **range**: Checks whether a number is within the range of a minimum and maximum value. - **validEmail**: Checks if a string is a valid email address. - **minLength**: Checks if a string has a minimum length. - **maxLength**: Checks if a string does not exceed a maximum length.