Skip to content

Instantly share code, notes, and snippets.

@mkoryak
Created January 17, 2013 22:54
Show Gist options
  • Save mkoryak/4560627 to your computer and use it in GitHub Desktop.
Save mkoryak/4560627 to your computer and use it in GitHub Desktop.
regexp search nested objects and wrap hits
var searchAndWrap = function(obj, regex, blacklist){
var found = false;
_(obj).each(function(val, key){
if(!_.include(blacklist || [], key)){
if(_.isObject(val)){
if(searchAndWrap(val, regex, blacklist)){
found = true;
}
} else {
val = val.toString();
obj[key] = val.replace(regex, '<span class="highlight">$1</span>');
if(obj[key].length != val.length){
found = true;
}
}
}
});
return found;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment