Boolean
You can check the module import here.
greater
Returns true if the first value is greater than the second value.
File
Usage
greaterOrEqual
Returns true if the first value is greater or equal to the second value.
File
Usage
less
Returns true if the first value is less than the second value.
File
Usage
lessOrEqual
Returns true if the first value is less or equal to the second value.
File
Usage
equal
Returns true if the value are equal (operator ==).
File
Usage
notEqual
Returns true if the value are not equal (operator !=).
File
Usage
identical
Returns true if the value are identical (operator ===).
File
Usage
notIdentical
Returns true if the value are not identical (operator !==).
File
Usage
isNull
Returns true if the value if null.
File
Usage
isUndefined
Returns true if the value if undefined.
File
Usage
isNil
Returns true if the value if null or undefined.
File
Usage
isNumber
Returns true if the value is a number.
File
Usage
isString
Returns true if the value is a string.
File
Usage
isFunction
Returns true if the value is a function.
File
Usage
isArray
Returns true if the value is an array.
File
Usage
isObject
Returns true if the value is an object.
File
Usage
isDefined
Returns true if the value is defined (nor null nor undefined).
File
Usage
Last updated
Was this helpful?