Skip to content

Instantly share code, notes, and snippets.

@palcisto
Created February 25, 2016 17:37
Show Gist options
  • Save palcisto/32170a42c1e40bd9ef5f to your computer and use it in GitHub Desktop.
Save palcisto/32170a42c1e40bd9ef5f to your computer and use it in GitHub Desktop.
Angular Filter Boilerplate
(function() {
'use strict';
angular
.module('', [])
.filter('filterName', filterName);
filterName.$inject = [];
function filterName() {
return function(argument) {
// body...
return argument;
};
}
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment