* 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)
| 19402 | * // => false |
| 19403 | */ |
| 19404 | function isObjectLike(value) { |
| 19405 | return value != null && typeof value == 'object'; |
| 19406 | } |
| 19407 | |
| 19408 | /** |
| 19409 | * Checks if `value` is classified as a `Map` object. |
no outgoing calls
no test coverage detected