performs a deep hasOwnProperty check
npm install has-deep-propertyChecks if a nested property exists. Rather than check write out the full path for each level you want to check, now you can check the full path all at once
``javascript
// old messy way
if(obj.someProperty
&& obj.someProperty.anotherProp
&& obj.someProperty.anotherProp.moreProps
&& obj.someProperty.anotherProp.moreProps.youGetThePicture) {
// do something
}
// new clean way
var hasDeepProperty = require('has-deep-property');
if(hasDeepProperty(obj, ['someProperty', 'anotherProp', 'moreProps', 'youGetThePicture'])) {
// do something
}
`
``
$ npm install --save hasDeepProperty
and returns true or false depending on whether the full path of properties exists`
var hasDeepProperty = require('has-deep-property');
var obj = {
foo: {
bar: {
baz: 'exists'
}
}
}
hasDeepProperty(obj, ['foo']); // true
hasDeepProperty(obj, ['foo', 'bar', 'baz']); // true
hasDeepProperty(obj, ['foo', 'buzz']); // false
``