Skip to content

Instantly share code, notes, and snippets.

@rkalkani
Last active July 12, 2016 11:57
Show Gist options
  • Save rkalkani/af42f68905425208a6db to your computer and use it in GitHub Desktop.
Save rkalkani/af42f68905425208a6db to your computer and use it in GitHub Desktop.
AngularJS custom filter code structure
(function() {
var filter = function(input) {
var output;
return output;
}
angular.module('App', [])
.filter('filter-name', filter);
}());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment