@technobuddha > library > Object
Type Guards
| Name | Type | Description |
|---|---|---|
| isArrayLike | Function | Determines whether the provided value is array-like. |
| isBoolean | Function | Determines whether the provided value is a boolean or a Boolean object. |
| isDate | Function | Determines whether the provided value is a Date object. |
| isFunction | Function | Determines whether the provided value is a function. |
| isIterable | Function | Determines if the provided object is iterable. |
| isIterator | Function | Determines whether the provided object conforms to the Iterator interface. |
| isNumber | Function | Determines whether the provided value is a number or a Number object. |
| isObject | Function | Determines whether the provided value is a non-null object. |
| isPrimitive | Function | Check to see if an object is a primitive |
| isRegExp | Function | Determines whether the provided value is a RegExp object. |
| isString | Function | Determines whether the provided value is a string. |