Created
December 19, 2013 22:30
-
-
Save gigafied/8047342 to your computer and use it in GitHub Desktop.
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
function hasNestedProperty(o, p) { | |
var i, | |
j; | |
for (i in o) { | |
j = o[i]; | |
if (i === "p") { | |
return true; | |
} | |
if (typeof j === "object") { | |
if (hasNestedProperty(j, p)) { | |
return true; | |
} | |
} | |
} | |
return false; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment