Skip to content

Instantly share code, notes, and snippets.

@kovalenko-anton
Last active May 4, 2019 09:25
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 kovalenko-anton/346bdbfe2638b16a7ae6f9a870176a0e to your computer and use it in GitHub Desktop.
Save kovalenko-anton/346bdbfe2638b16a7ae6f9a870176a0e to your computer and use it in GitHub Desktop.
function checkNested(obj /*, level1, level2, ... levelN*/) {
var args = Array.prototype.slice.call(arguments, 1);
for (var i = 0; i < args.length; i++) {
if (!obj || !obj.hasOwnProperty(args[i])) {
return false;
}
obj = obj[args[i]];
}
return true;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment