Skip to content

Instantly share code, notes, and snippets.

@rissajeanne
Created February 7, 2012 15:50
Show Gist options
  • Save rissajeanne/1760350 to your computer and use it in GitHub Desktop.
Save rissajeanne/1760350 to your computer and use it in GitHub Desktop.
sortVersions: function() {
var getLang = function (ver) {
return ver.get('lang');
},
getLangAndAbbr = function (ver) {
return ver.get('lang') + ver.get('display_abbreviation');
};
this.sortedByLang = _.groupBy(this.sortBy(getLangAndAbbr), getLang);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment