mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
745 B
34 lines
745 B
9 years ago
|
var baseHasIn = require('./_baseHasIn'),
|
||
|
hasPath = require('./_hasPath');
|
||
|
|
||
|
/**
|
||
|
* Checks if `path` is a direct or inherited property of `object`.
|
||
|
*
|
||
|
* @static
|
||
|
* @memberOf _
|
||
|
* @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 `false`.
|
||
|
* @example
|
||
|
*
|
||
|
* var object = _.create({ 'a': _.create({ 'b': _.create({ 'c': 3 }) }) });
|
||
|
*
|
||
|
* _.hasIn(object, 'a');
|
||
|
* // => true
|
||
|
*
|
||
|
* _.hasIn(object, 'a.b.c');
|
||
|
* // => true
|
||
|
*
|
||
|
* _.hasIn(object, ['a', 'b', 'c']);
|
||
|
* // => true
|
||
|
*
|
||
|
* _.hasIn(object, 'b');
|
||
|
* // => false
|
||
|
*/
|
||
|
function hasIn(object, path) {
|
||
|
return hasPath(object, path, baseHasIn);
|
||
|
}
|
||
|
|
||
|
module.exports = hasIn;
|