Skip to content

Instantly share code, notes, and snippets.

@mertonium
Created August 16, 2011 17:46
Show Gist options
  • Save mertonium/1149687 to your computer and use it in GitHub Desktop.
Save mertonium/1149687 to your computer and use it in GitHub Desktop.
Recline transform to Title Case
function(doc) {
doc['clean_address'] = doc['ALL_meSSed_uP_addr'].toLowerCase().replace(/\b[a-z]/g, function() { return arguments[0].toUpperCase();});
return doc;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment