Created
October 5, 2017 08:26
-
-
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
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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