_.has(object, path)
Checks if path
is a direct property of object
.
Since
0.1.0
Arguments
object
(Object): The object to query.path
(Array|string): The path to check.
Returns
(boolean): Returns true
if path
exists, else false
.
Example
var object = { 'a': { 'b': 2 } };var other = _.create({ 'a': _.create({ 'b': 2 }) });_.has(object, 'a');// => true_.has(object, 'a.b');// => true_.has(object, ['a', 'b']);// => true_.has(other, 'a');// => false
当前内容版权归 lodash.com 或其关联方所有,如需对内容或内容相关联开源项目进行关注与资助,请访问 lodash.com .