* Checks if `value` is object-like. A value is object-like if it's not `null` * and has a `typeof` result of "object". * * @static * @memberOf _ * @since 4.0.0 * @category Lang * @param {*} value The value to check. * @returns {boolean} Returns `true` if `valu
(value)
| 11869 | * // => false |
| 11870 | */ |
| 11871 | function isObjectLike(value) { |
| 11872 | return value != null && typeof value == 'object'; |
| 11873 | } |
| 11874 | |
| 11875 | /** |
| 11876 | * Checks if `value` is classified as a `Map` object. |
no outgoing calls
no test coverage detected