angular-filters
angular-filters copied to clipboard
A collection of useful filters for AngularJS.
Results
2
angular-filters issues
Sort by
recently updated
recently updated
newest added
Why are you not utilizing Math.max in your max filter? ``` javascript function maxFilter($window) { return function (collection) { return $window.Math.max.apply(Math, collection); }; } ```
Very nice library! I would only point out that the `bool` filter doesn't look right. It evaluates the value as strictly `!==true`: ``` javascript angular.module('frapontillo.ex.filters') .filter('bool', function() { return function(input,...