* Checks if `path` is a direct or inherited property of `object`. * * @static * @memberOf _ * @since 4.0.0 * @category Object * @param {Object} object The object to query. * @param {Array|string} path The path to check. * @returns {boolean} Returns `true` if `path` exists, else `fals
(object, path)
| 54570 | * // => false |
| 54571 | */ |
| 54572 | function hasIn(object, path) { |
| 54573 | return object != null && hasPath(object, path, baseHasIn); |
| 54574 | } |
| 54575 | |
| 54576 | module.exports = hasIn; |
| 54577 |
no test coverage detected