Skip to content

Instantly share code, notes, and snippets.

@fbedussi
Created October 5, 2017 08:26
Show Gist options
  • Save fbedussi/b00df846be8f18ce3f82c831d18cc240 to your computer and use it in GitHub Desktop.
Save fbedussi/b00df846be8f18ce3f82c831d18cc240 to your computer and use it in GitHub Desktop.
check if an object exsits and if it has the specified nested property
export default const objHasDeepProp = (obj, deepProp) => {
const props = deepProp.split('.');
var objToTest = obj;
var result = true;
if (!obj) {
return false;
}
for (let i = 0; i < props.length; i++) {
if (objToTest && objToTest.hasOwnProperty(props[i])) {
objToTest = objToTest[props[i]];
} else {
result = false;
break;
}
}
return result;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment