Skip to content

Instantly share code, notes, and snippets.

@radjivF
Created July 31, 2015 13:42
Show Gist options
  • Save radjivF/06a35bd001d6a3ba4a19 to your computer and use it in GitHub Desktop.
Save radjivF/06a35bd001d6a3ba4a19 to your computer and use it in GitHub Desktop.
function findDeep(obj, key) {
if (_.has(obj, key))
return [obj];
return _.flatten(_.map(obj, function(v) {
return typeof v == "object" ? findDeep(v, key) : [];
}), true);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment