* 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
(value)
| 2453 | * // => false |
| 2454 | */ |
| 2455 | function isObjectLike(value) { |
| 2456 | return value != null && (typeof value === 'undefined' ? 'undefined' : _typeof(value)) == 'object'; |
| 2457 | } |
| 2458 | |
| 2459 | module.exports = isObjectLike; |
| 2460 |
no outgoing calls
no test coverage detected