@@ -17,11 +17,15 @@ import {GroupByPipe} from './group-by';
17
17
import { FilterByPipe } from './filter-by' ;
18
18
import { OrderByPipe } from './order-by' ;
19
19
import { NgModule } from '@angular/core' ;
20
+ import { GroupByImpurePipe } from './group-by-impure' ;
21
+ import { FilterByImpurePipe } from './filter-by-impure' ;
22
+ import { OrderByImpurePipe } from './order-by-impure' ;
20
23
21
24
const ARRAY_PIPES = [
22
25
DiffPipe , FlattenPipe , InitialPipe , IntersectionPipe , ReversePipe , TailPipe ,
23
26
TrurthifyPipe , UnionPipe , UniquePipe , WithoutPipe , PluckPipe , ShufflePipe ,
24
- EveryPipe , SomePipe , SamplePipe , GroupByPipe , FilterByPipe , OrderByPipe
27
+ EveryPipe , SomePipe , SamplePipe , GroupByPipe , GroupByImpurePipe ,
28
+ FilterByPipe , FilterByImpurePipe , OrderByPipe , OrderByImpurePipe
25
29
] ;
26
30
27
31
@NgModule ( {
@@ -50,3 +54,6 @@ export {SamplePipe} from './sample';
50
54
export { GroupByPipe } from './group-by' ;
51
55
export { FilterByPipe } from './filter-by' ;
52
56
export { OrderByPipe } from './order-by' ;
57
+ export { GroupByImpurePipe } from './group-by-impure' ;
58
+ export { FilterByImpurePipe } from './filter-by-impure' ;
59
+ export { OrderByImpurePipe } from './order-by-impure' ;
0 commit comments