validasaur icon indicating copy to clipboard operation
validasaur copied to clipboard

Deno validation library

Results 8 validasaur issues
Sort by recently updated
recently updated
newest added

Currently, it is only possible to validate top-level objects using `validate()`. However, there are some use-cases where validating a single value like an `array` would be needed handy. **_Example_**: Imagine...

A `nonNaN` rule has been added since the existing rules like `isNumber`, `isFloat`, `isNumeric`, `minNumber`, `maxNumber` all pass when providing a `NaN` value. To provide backwards compatibility, the existing rules...

I'd want to check in one validation that `userInput` is number and larger or equal to zero. To enable `minNumber` check, I need to convert the user input String to...

After validating the input data, I want to delete all the properties that are not defined in the validation rule from input. Or, to "strip" the input data according to...

I wasn't able to convert the massive regexp rule from Laravel/Symfony into Validasaur, but this one will make any of the below urls valid : - test.com - test.com/ -...

Hi guys, I love your project but I miss a simple predicate function. For example something like this: ```typescript export const isValid = (result: Validity): boolean => { return result...

hi dear, i add new rule validation called isAlphaNumeric to existed project, i hope this new feature wil accept for next version of validasaur .