-
Response
Server Error
```
cf-ray: 501949b978f8cdb7-CDG
content-type: text/html; charset=utf-8
date: Mon, 05 Aug 2019 13:58:48 GMT
expect-ct: max-age=604800, report-uri="https://report-uri.clou…
-
The first number is pasted into the code.second and third number is manually entered.
Inconsistent execution results
```js
console.log("validator.isNumeric('6613476279')",validator.isNumeric("661…
-
It's possible to pass a string to the rules parameter.
```js
var Validator = require('validatorjs');
const data = 'John';
const rules = 'required';
const validation = new Validator(data, rule…
-
in validator.js "check" method should throw an exception. I just spent a bit debugging why my validation doesn't work on node server. I use same data on client and server but forgot to register custom…
-
Hi and thanks for an awesome library!!
Coming from the Angular world I am new to react, react native, mobx and I am having some problems trying to get the validation to work in a simple React Nativ…
-
I debuged the respective error and found the solution:
- The error occurres because u didn't added the "attributes : {}" property in the validatorjs/src/lang/pt.js
-
Hi,
i am using validatorJs in react-native and when i add validation.passes() in code and run app then get this issue
> Cannot read property 'def' of undefined
-
We are trying to use required_with in an array and can't get it to work. I created an example and believe it should have errors for options.c but it doesn't. I also tried flattening the rules but it d…
-
How do i validate an array in string format.
Data being sent to me is a form-data which are mostly string values, however some fields are required to be an array.
{
"labels":"[\"a\", \"b\"]"
}
…
-
Hi @foxhound87
Thank you for your nice library.
We've been experiencing some issues with latest versions.
Problem with custom async VJF validation rule. Our code:
```
import * as validatorjs…