Skip to content

Instantly share code, notes, and snippets.

@adnasa
Last active August 29, 2015 14:21
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 adnasa/73ed5d3b4459badbdecf to your computer and use it in GitHub Desktop.
Save adnasa/73ed5d3b4459badbdecf to your computer and use it in GitHub Desktop.
Quite wierd
addresses = _.sortBy(addresses, function(address) {
addressEntity = address.address;
var reducedKey;
reducedKey = ['name', 'city', 'zipCode'].reduce(function(previous, current) {
if (previous && addressEntity.hasOwnProperty(previous) && addressEntity[previous]) {
return previous;
} else if (current) {
return current;
}
});
return addressEntity[reducedKey];
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment