angular-filter icon indicating copy to clipboard operation
angular-filter copied to clipboard

Bunch of useful filters for AngularJS (with no external dependencies!)

Results 102 angular-filter issues
Sort by recently updated
recently updated
newest added

Hi, thank you for this awesome plugin! I just noticed ucfirst filter doesn't work with fully capitalized string. **Expected behavior:** hello leo => Hello Leo HELLO LEO => Hello Leo...

Given this data: ``` javascript $scope.types = [ { "name": "type1", "default": false }, { "name": "type2", "default": true } ]; ``` This failed: `` I had to revert to:...

Is it possible to trim a number of characters and not only a certain part of a string?

$scope.users = [ { id: 1, first_name: 'Rob', last_name: 'John', mobile: 4444, isFoo: false }, { id: 2, first_name: 'John', last_name: 'Wayne', mobile: 3333, isFoo: false }, { id: 3,...

Hi, I have read the example to groupby date here: http://jsbin.com/zegavo/3/edit?js But, how to GroupBy Week, Month and Year? This is my question in stackoverflow: https://stackoverflow.com/questions/49150856/angularjs-groupby-week-month-year-and-sum

Hi, just wanted to note that if you use angularjs + angular hybrid, zone js will cause digest every 2 seconds because of this https://github.com/a8m/angular-filter/blob/master/src/_provider/watcher.js#L83 This may cause huge lag...

Using and loving this library. Found a bug with the String.contains polyfill. Another library was calling a for in loop on a string and the contains function was showing as...

The current implementation for byteFmt and kbFmt is using KiB(kibibyte) and MiB (mebibyte) are wrongly used in place of kB(kilobyte) and MB (megabyte). The issue should be fixed in compatibility...