Script extension for multi value validation and comparison.
All functions operating on multi values will convert supplied value(s) to multi value if not already (see mv.from(value)
)
In JavaScript multi values are represented as arrays.
Converts a value to a multi value if not already.
Handles the following types of input values:
arrays (returned as is)
json arrays (parsed to array)
single values of any types (added as first element to new array)
mv.from(value)
Name | Type | Description |
---|---|---|
Returns the length of the supplied multi value.
mv.length(value)
Returns true
if the supplied multi value contains the supplied expected value, possibly ignoring the case (if values are strings).
Note: This function works exactly like mv.containsAny
but with support for only one expected value.
mv.contains(value, expected[, ignoreCase])
Returns true
if the supplied multi value contains at least one of the supplied expected values, possibly ignoring the case (if values are strings).
mv.containsAny(value, expected[, expected, ...][, ignoreCase])
Returns true
if the supplied multi value contains all of the supplied expected values, possibly ignoring the case (if values are strings).
mv.containsAll(value, expected[, expected, ...][, ignoreCase])
Returns true
if at least one value in the supplied multi value matches one or more of the supplied regex's.
Regex may be supplied as strings, regex-literals or RegExp objects.
Note: Case-insensitivity is controlled by regex flag ('i'
).
mv.matchAny(value, regex [,regex, ...])
Returns true
if the supplied multi values has exactly same content.
mv.equals(mv1, mv2)
Returns true
if the supplied multi value is not null/undefined and is empty.
mv.isEmpty(value)
Returns true
if the supplied multi value is not null/undefined and is not empty (has one or more elements).
mv.isNotEmpty(value)
Returns true
if the supplied multi value is null/undefined or is empty.
mv.isNullOrEmpty(value)
Returns true
if the supplied multi value is not null/undefined and is not empty (has one or more element).
mv.isNotNullOrEmpty(value)
Name | Type | Description |
---|---|---|
Name | Type | Description |
---|---|---|
Name | Type | Description |
---|---|---|
Name | Type | Description |
---|---|---|
Name | Type | Description |
---|---|---|
Name | Type | Description |
---|---|---|
Name | Type | Description |
---|---|---|
Name | Type | Description |
---|---|---|
Name | Type | Description |
---|---|---|
Name | Type | Description |
---|---|---|
value
any
The value to convert to multi value
value
any
The multi value whose length is to be calculated and returned.
value
any
The multi value whose content is to be asserted.
expected
any
Value expected to be contained in value
ignoreCase
boolean
Flag turning on string case insensitivity (default: false
)
value
any
The multi value whose content is to be asserted.
expected
any
One or more values expected to be contained in value
ignoreCase
boolean
Flag turning on string case insensitivity (default: false
)
value
any
The multi value whose content is to be asserted.
expected
any
One or more values expected to be contained in value
ignoreCase
boolean
Flag turning on string case insensitivity (default: false
)
value
any
The multi value whose content is to be matched.
expected
any
One or more regex to match against value.
mv1
any
The multi value whose content is to be matched.
mv2
any
One or more regex to match against value.
value
any
The multi value to assert
value
any
The multi value to assert
value
any
The multi value to assert
value
any
The multi value to assert