* Gets the value at `path` of `object`. If the resolved value is * `undefined`, the `defaultValue` is returned in its place. * * @static * @memberOf _ * @since 3.7.0 * @category Object * @param {Object} object The object to query. * @param {Array|string} path
(object, path, defaultValue)
| 13223 | * // => 'default' |
| 13224 | */ |
| 13225 | function get(object, path, defaultValue) { |
| 13226 | var result = object == null ? undefined : baseGet(object, path); |
| 13227 | return result === undefined ? defaultValue : result; |
| 13228 | } |
| 13229 | |
| 13230 | /** |
| 13231 | * Checks if `path` is a direct property of `object`. |
no test coverage detected