isRegexMatch
isRegexMatch(regex)Arguments:
Possible errors:
If provided Verificable is not a string:
Verificable is not a string:{
type: "isString",
path: [/* ... */]
}If provided Verificable is not matching provided regex:
Verificable is not matching provided regex:{
type: "isRegexMatch",
path: [/* ... */]
}Examples:
Null or undefined is not considered a string:
Number value is not considered a string as well:
Value not matching the regex is not matching the predicate:
regex is not matching the predicate:Value matching the regex matches the predicate:
regex matches the predicate:Last updated