* 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 `value` is object-like, else `false`.
(value)
| 818 | * // => false |
| 819 | */ |
| 820 | function isObjectLike(value) { |
| 821 | return !!value && typeof value === "object"; |
| 822 | } |
| 823 | |
| 824 | /** |
| 825 | * Checks if `value` is classified as a `String` primitive or object. |
no outgoing calls
no test coverage detected