Skip to content

Instantly share code, notes, and snippets.

@joshuakfarrar
Last active August 29, 2015 13:58
Show Gist options
  • Save joshuakfarrar/10404021 to your computer and use it in GitHub Desktop.
Save joshuakfarrar/10404021 to your computer and use it in GitHub Desktop.
angular.module('app')
.filter('reverse', function() {
return function(items) {
return items.slice().reverse();
};
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment