isString
Verifies if provided Verificable
represents a value that is a string.
The check internally is done by checking the type of the value typeof value === "string"
.
Possible errors:
If provided Verificable
is not a string:
Verificable
is not a string:Examples:
Each of examples uses this import statement:
Null or undefined is not considered a string:
Non-string values are not matching the predicate:
String value is matching the predicate:
Last updated