How can I perform a case-insensitive sort of a Meteor collection? What additional code would be required in the following block?
var movies = Movies.find({}, {sort: {name: 1}});
Alternatively, is using Underscore (or another vanilla JS method) on the fetched data the only available option at the moment?
var movies = Movies.find().fetch();
return _.sortBy(movies, function(movie) {
// add sorting logic here
});