Is integer
Checks whether a value is an integer.
Endpoint:
GET parameters:
- val: string – the value to check
Response:
"true" if it is, "false" otherwise
Examples:
Is string
Checks whether a value is a string.
Endpoint:
GET parameters:
- val: string – the value to check
Response:
"true" if it is, "false" otherwise
Examples:
Is boolean
Checks whether a value is a boolean.
Endpoint:
GET parameters:
- val: string – the value to check
Response:
"true" if it is, "false" otherwise
Examples:
Is number
Checks whether a value is a number.
Endpoint:
GET parameters:
- val: string – the value to check
Response:
"true" if it is, "false" otherwise
Examples:
Is float
Checks whether a value is a floating point value.
Endpoint:
GET parameters:
- val: string – the value to check
Response:
"true" if it is, "false" otherwise
Examples:
Is null
Checks whether a value is null.
Endpoint:
GET parameters:
- val: string – the value to check
Response:
"true" if it is, "false" otherwise