1
- export * from './aggregate' ;
2
- export * from './array' ;
3
- export * from './boolean' ;
4
- export * from './math' ;
5
- export * from './object' ;
6
- export * from './string' ;
7
-
8
- export { NgPipesModule } from './pipes.module' ;
1
+ export { NgAggregatePipesModule } from './aggregate/aggregate.module' ;
2
+ export { NgArrayPipesModule } from './array/array.module' ;
3
+ export { NgBooleanPipesModule } from './boolean/boolean.module' ;
4
+ export { NgMathPipesModule } from './math/math.module' ;
5
+ export { NgObjectPipesModule } from './object/object.module' ;
6
+ export { NgStringPipesModule } from './string/string.module' ;
7
+
8
+ export { NgPipesModule } from './pipes.module' ;
9
+
10
+
11
+
12
+ export { GroupByPipe } from './aggregate/group-by.pipe' ;
13
+ export { MaxPipe } from './aggregate/max.pipe' ;
14
+ export { MeanPipe } from './aggregate/mean.pipe' ;
15
+ export { MinPipe } from './aggregate/min.pipe' ;
16
+ export { SumPipe } from './aggregate/sum.pipe' ;
17
+
18
+ export { EmptyPipe } from './array/empty.pipe' ;
19
+ export { HeadPipe } from './array/head.pipe' ;
20
+ export { InitialPipe } from './array/initial.pipe' ;
21
+ export { LastPipe } from './array/last.pipe' ;
22
+ export { JoinPipe } from './array/join.pipe' ;
23
+ export { TailPipe } from './array/tail.pipe' ;
24
+ export { UniqPipe } from './array/uniq.pipe' ;
25
+ export { WithoutPipe } from './array/without.pipe' ;
26
+ export { MapPipe } from './array/map.pipe' ;
27
+ export { WherePipe } from './array/where.pipe' ;
28
+ export { FirstOrDefaultPipe } from './array/first-or-default.pipe' ;
29
+ export { RangePipe } from './array/range.pipe' ;
30
+ export { PluckPipe } from './array/pluck.pipe' ;
31
+ export { ReversePipe } from './array/reverse.pipe' ;
32
+ export { OrderByPipe } from './array/order-by.pipe' ;
33
+ export { CountPipe } from './array/count.pipe' ;
34
+ export { SomePipe } from './array/some.pipe' ;
35
+ export { EveryPipe } from './array/every.pipe' ;
36
+ export { ShufflePipe } from './array/shuffle.pipe' ;
37
+ export { TakePipe } from './array/take.pipe' ;
38
+ export { DropPipe } from './array/drop.pipe' ;
39
+ export { DeepPipe } from './array/deep.pipe' ;
40
+ export { ChunkPipe } from './array/chunk.pipe' ;
41
+ export { FlattenPipe } from './array/flatten.pipe' ;
42
+ export { IntersectionPipe } from './array/intersection.pipe' ;
43
+ export { UnionPipe } from './array/union.pipe' ;
44
+ export { TakeWhilePipe } from './array/take-while.pipe' ;
45
+ export { TakeUntilPipe } from './array/take-until.pipe' ;
46
+
47
+
48
+ export {
49
+ IsEqualPipe ,
50
+ IsGreaterOrEqualPipe ,
51
+ IsGreaterPipe ,
52
+ IsLessOrEqualPipe ,
53
+ IsIdenticalPipe ,
54
+ IsLessPipe ,
55
+ IsNotEqualPipe ,
56
+ IsNotIdenticalPipe
57
+ } from './boolean/conditions.pipe' ;
58
+
59
+ export {
60
+ IsArrayPipe ,
61
+ IsDefinedPipe ,
62
+ IsFunctionPipe ,
63
+ IsNilPipe ,
64
+ IsNullPipe ,
65
+ IsNumberPipe ,
66
+ IsObjectPipe ,
67
+ IsStringPipe ,
68
+ IsUndefinedPipe
69
+ } from './boolean/types.pipe' ;
70
+
71
+
72
+ export { BytesPipe } from './math/bytes.pipe' ;
73
+ export { CeilPipe } from './math/ceil.pipe' ;
74
+ export { FloorPipe } from './math/floor.pipe' ;
75
+ export { RoundPipe } from './math/round.pipe' ;
76
+ export { DegreesPipe } from './math/degrees.pipe' ;
77
+ export { RadiansPipe } from './math/radians.pipe' ;
78
+ export { RandomPipe } from './math/random.pipe' ;
79
+ export { SqrtPipe } from './math/sqrt.pipe' ;
80
+ export { PowPipe } from './math/pow.pipe' ;
81
+
82
+ export { KeysPipe } from './object/keys.pipe' ;
83
+ export { ToArrayPipe } from './object/to-array.pipe' ;
84
+ export { DefaultsPipe } from './object/defaults.pipe' ;
85
+
86
+
87
+ export { LeftPadPipe } from './string/left-pad.pipe' ;
88
+ export { MatchPipe } from './string/match.pipe' ;
89
+ export { PadPipe } from './string/pad.pipe' ;
90
+ export { ReplacePipe } from './string/replace.pipe' ;
91
+ export { RightPadPipe } from './string/right-pad.pipe' ;
92
+ export { SplitPipe } from './string/split.pipe' ;
93
+ export { TestPipe } from './string/test.pipe' ;
94
+ export { TrimPipe } from './string/trim.pipe' ;
95
+ export { NewlinesPipe } from './string/newlines.pipe' ;
96
+ export { CapitalizePipe } from './string/capitalize.pipe' ;
97
+ export { UpperFirstPipe } from './string/upperfirst.pipe' ;
98
+ export { TemplatePipe } from './string/template.pipe' ;
99
+ export { EncodeURIPipe } from './string/encode-uri.pipe' ;
100
+ export { EncodeURIComponentPipe } from './string/encode-uri-component.pipe' ;
101
+ export { DecodeURIPipe } from './string/decode-uri.pipe' ;
102
+ export { DecodeURIComponentPipe } from './string/decode-uri-component.pipe' ;
103
+ export { TruncatePipe } from './string/truncate.pipe' ;
104
+ export { RepeatPipe } from './string/repeat.pipe' ;
105
+ export { SlugifyPipe } from './string/slugify.pipe' ;
106
+ export { StripTagsPipe } from "./string/strip-tags.pipe" ;
107
+ export { LatinizePipe } from "./string/latinize.pipe" ;
108
+ export { WrapPipe } from "./string/wrap.pipe" ;
109
+ export { WithPipe } from "./string/with.pipe" ;
110
+ export { ReverseStrPipe } from "./string/reverse-str.pipe" ;
0 commit comments