-
Notifications
You must be signed in to change notification settings - Fork 331
/
Copy pathfilters.js
79 lines (72 loc) · 1.26 KB
/
filters.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
/**
* @ngdoc module
* @name angular.filters
* @description
* Bunch of useful filters for angularJS
*/
angular.module('angular.filter', [
'a8m.ucfirst',
'a8m.uri-encode',
'a8m.uri-component-encode',
'a8m.slugify',
'a8m.latinize',
'a8m.strip-tags',
'a8m.stringular',
'a8m.truncate',
'a8m.starts-with',
'a8m.ends-with',
'a8m.wrap',
'a8m.trim',
'a8m.ltrim',
'a8m.rtrim',
'a8m.repeat',
'a8m.test',
'a8m.match',
'a8m.to-array',
'a8m.concat',
'a8m.contains',
'a8m.unique',
'a8m.is-empty',
'a8m.after',
'a8m.after-where',
'a8m.before',
'a8m.before-where',
'a8m.defaults',
'a8m.where',
'a8m.reverse',
'a8m.remove',
'a8m.remove-with',
'a8m.group-by',
'a8m.count-by',
'a8m.chunk-by',
'a8m.search-field',
'a8m.fuzzy-by',
'a8m.fuzzy',
'a8m.omit',
'a8m.pick',
'a8m.every',
'a8m.filter-by',
'a8m.xor',
'a8m.map',
'a8m.first',
'a8m.last',
'a8m.flatten',
'a8m.join',
'a8m.range',
'a8m.math',
'a8m.math.max',
'a8m.math.min',
'a8m.math.percent',
'a8m.math.radix',
'a8m.math.sum',
'a8m.math.degrees',
'a8m.math.radians',
'a8m.math.byteFmt',
'a8m.math.kbFmt',
'a8m.math.shortFmt',
'a8m.angular',
'a8m.conditions',
'a8m.is-null',
'a8m.filter-watcher',
'a8m.in-array'
]);