indicative icon indicating copy to clipboard operation
indicative copied to clipboard

Indicative is a simple yet powerful data validator for Node.js and browsers. It makes it so simple to write async validations on nested set of data.

Results 13 indicative issues
Sort by recently updated
recently updated
newest added

Snyk has created this PR to upgrade indicative-parser from 7.1.4 to 8.0.0. :information_source: Keep your dependencies up-to-date. This makes it easier to fix existing vulnerabilities and to more quickly identify...

## Prerequisites Showing vulnerabilities while package installation. Please fix. # npm audit report validator =7.2.0 Depends on vulnerable versions of validator node_modules/indicative-rules 2 moderate severity vulnerabilities To address all issues,...

Is it possible to validate a field to make the key mandatory but allow empty string in it? The `required` validation does check for the existence of a key but...

## Why this feature is required (specific use-cases will be appreciated)? One of the main reasons (I believe) of indicative's schema format is that it is serializable. So, the same...

Thank you for such a awesome project! It's very elegant! ## Package version "indicative": "^7.4.4", ## Node.js and npm version v13.12.0 At first I used the `email` rule but noticed...

## Package version "indicative": "^7.4.4", ## Node.js and npm version v14.16.0, 6.14.11 ## Sample Code (to reproduce the issue) validations.regex([new RegExp('^([a-zA-Z0-9_])+$')]), validations.regex([new RegExp('^\\S+$')]) So in my textarea which I'm validating,...

There are 2 scenarios (Example2 and Example 3) in the code below where I expect the validator to behave in a certain way but it doesn't. For eg, - in...

## Package version 7.2.1 ## Node.js and npm version Node: v12.4.0 npm: 6.13.7 ## Sample Code (to reproduce the issue) Following code works: ``` const rules = { username: [...

Unfortunately my keys contains dot characters, but this is not a nested object. So the library try to check the nested value but there is no nesting. Example object: ```...

## Prerequisites Hi Team, I am getting the following issue as shown below for extend sample. [ { message: "Cannot read property 'existyStrict' of undefined", validation: 'ENGINE_EXCEPTION', field: 'start_time' }...