Type Helpers
Utility functions for working with types.
Functions
| Function | Description |
|---|---|
isEmpty | Checks if a value is empty. |
isSpecialObject | Determines if a value is a special object that should not have its properties compared deeply. |
isSet | Checks if a value is set (not undefined nor null) |
isString | Checks if a value is a string |
isNumber | Checks if a value is a number |
isBoolean | Checks if a value is a boolean |
isArray | Checks if a value is an array |
isObject | Checks if a value is a plain object |
isFunction | Checks if a value is a function |
isDate | Checks if a value is a Date |
isValidRegex | Checks if a string is a valid regex |