* 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)
| 18422 | * // => false |
| 18423 | */ |
| 18424 | function isObjectLike(value) { |
| 18425 | return value != null && typeof value == 'object'; |
| 18426 | } |
| 18427 | |
| 18428 | module.exports = isObjectLike; |
| 18429 |
no outgoing calls
no test coverage detected
searching dependent graphs…