Skip to content

Instantly share code, notes, and snippets.

@gigafied
Created December 19, 2013 22:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gigafied/8047342 to your computer and use it in GitHub Desktop.
Save gigafied/8047342 to your computer and use it in GitHub Desktop.
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