@@ -38,7 +38,7 @@ Returns true if the collection is empty.
38
38
##### File
39
39
40
40
``` typescript
41
- import { EmptyPipe } from ' angular-pipes/src/array/empty.pipe ' ;
41
+ import { EmptyPipe } from ' angular-pipes' ;
42
42
```
43
43
44
44
##### Usage
@@ -55,7 +55,7 @@ Returns the first element of the collection, or undefined if the collection is e
55
55
##### File
56
56
57
57
``` typescript
58
- import { HeadPipe } from ' angular-pipes/src/array/head.pipe ' ;
58
+ import { HeadPipe } from ' angular-pipes' ;
59
59
```
60
60
61
61
##### Usage
@@ -72,7 +72,7 @@ Returns every element but the last of the collection or empty array if the colle
72
72
##### File
73
73
74
74
``` typescript
75
- import { InitialPipe } from ' angular-pipes/src/array/initial.pipe ' ;
75
+ import { InitialPipe } from ' angular-pipes' ;
76
76
```
77
77
78
78
##### Usage
@@ -90,7 +90,7 @@ Joins an array into a string.
90
90
##### File
91
91
92
92
``` typescript
93
- import { JoinPipe } from ' angular-pipes/src/array/join.pipe ' ;
93
+ import { JoinPipe } from ' angular-pipes' ;
94
94
```
95
95
96
96
##### Usage
@@ -109,7 +109,7 @@ Returns the last element of the collection or undefined if the collection is emp
109
109
##### File
110
110
111
111
``` typescript
112
- import { LastPipe } from ' angular-pipes/src/array/last.pipe ' ;
112
+ import { LastPipe } from ' angular-pipes' ;
113
113
```
114
114
115
115
##### Usage
@@ -127,7 +127,7 @@ Returns every elements but the first of the collection or empty array if the col
127
127
##### File
128
128
129
129
``` typescript
130
- import { TailPipe } from ' angular-pipes/src/array/tail.pipe ' ;
130
+ import { TailPipe } from ' angular-pipes' ;
131
131
```
132
132
133
133
##### Usage
@@ -145,7 +145,7 @@ Returns the collection keeping only one duplicate.
145
145
##### File
146
146
147
147
``` typescript
148
- import { UniqPipe } from ' angular-pipes/src/array/uniq.pipe ' ;
148
+ import { UniqPipe } from ' angular-pipes' ;
149
149
```
150
150
151
151
##### Usage
@@ -162,7 +162,7 @@ Returns the collection without the specified elements.
162
162
##### File
163
163
164
164
``` typescript
165
- import { WithoutPipe } from ' angular-pipes/src/array/without.pipe ' ;
165
+ import { WithoutPipe } from ' angular-pipes' ;
166
166
```
167
167
168
168
##### Usage
@@ -178,7 +178,7 @@ Returns the intersection of two collection, works with deep equal.
178
178
##### File
179
179
180
180
``` typescript
181
- import { IntersectionPipe } from ' angular-pipes/src/array/intersection.pipe ' ;
181
+ import { IntersectionPipe } from ' angular-pipes' ;
182
182
```
183
183
184
184
##### Usage
@@ -198,7 +198,7 @@ Returns the union of two collection, works with deep equal.
198
198
##### File
199
199
200
200
``` typescript
201
- import { UnionPipe } from ' angular-pipes/src/array/union.pipe ' ;
201
+ import { UnionPipe } from ' angular-pipes' ;
202
202
```
203
203
204
204
##### Usage
@@ -219,7 +219,7 @@ The value on the left hand size does not matter, it is ignored.
219
219
##### File
220
220
221
221
``` typescript
222
- import { RangePipe } from ' angular-pipes/src/array/range.pipe ' ;
222
+ import { RangePipe } from ' angular-pipes' ;
223
223
```
224
224
225
225
##### Usage
@@ -240,7 +240,7 @@ If no function is provided, the collection is returned unchanged.
240
240
##### File
241
241
242
242
``` typescript
243
- import { MapPipe } from ' angular-pipes/src/array/map.pipe ' ;
243
+ import { MapPipe } from ' angular-pipes' ;
244
244
```
245
245
246
246
##### Usage
@@ -267,7 +267,7 @@ Returns an array of the given property of the object in the array.
267
267
##### File
268
268
269
269
``` typescript
270
- import { PluckPipe } from ' angular-pipes/src/array/pluck.pipe ' ;
270
+ import { PluckPipe } from ' angular-pipes' ;
271
271
```
272
272
273
273
##### Usage
@@ -311,7 +311,7 @@ Filter an array with a given function or a property shorthand.
311
311
##### File
312
312
313
313
``` typescript
314
- import { WherePipe } from ' angular-pipes/src/array/where.pipe ' ;
314
+ import { WherePipe } from ' angular-pipes' ;
315
315
```
316
316
317
317
##### Usage
@@ -363,7 +363,7 @@ such element exists.
363
363
##### File
364
364
365
365
``` typescript
366
- import { FirstOrDefaultPipe } from ' angular-pipes/src/array/first-or-default.pipe ' ;
366
+ import { FirstOrDefaultPipe } from ' angular-pipes' ;
367
367
```
368
368
369
369
##### Usage
@@ -415,7 +415,7 @@ Returns a new ordered array. You can order by multiple properties, ascending and
415
415
##### File
416
416
417
417
``` typescript
418
- import { OrderByPipe } from ' angular-pipes/src/array/order-by.pipe ' ;
418
+ import { OrderByPipe } from ' angular-pipes' ;
419
419
```
420
420
421
421
##### Usage
@@ -449,7 +449,7 @@ Returns a reversed array.
449
449
##### File
450
450
451
451
``` typescript
452
- import { ReversePipe } from ' angular-pipes/src/array/reverse.pipe ' ;
452
+ import { ReversePipe } from ' angular-pipes' ;
453
453
```
454
454
455
455
##### Usage
@@ -467,7 +467,7 @@ Works also for object and string.
467
467
##### File
468
468
469
469
``` typescript
470
- import { CountPipe } from ' angular-pipes/src/array/count.pipe ' ;
470
+ import { CountPipe } from ' angular-pipes' ;
471
471
```
472
472
473
473
##### Usage
@@ -484,7 +484,7 @@ Returns true if at least one of the item in the collections pass the predicate.
484
484
##### File
485
485
486
486
``` typescript
487
- import { SomePipe } from ' angular-pipes/src/array/some.pipe ' ;
487
+ import { SomePipe } from ' angular-pipes' ;
488
488
```
489
489
490
490
##### Usage
@@ -508,7 +508,7 @@ Returns true if every item in the collections pass the predicate.
508
508
##### File
509
509
510
510
``` typescript
511
- import { EveryPipe } from ' angular-pipes/src/array/every.pipe ' ;
511
+ import { EveryPipe } from ' angular-pipes' ;
512
512
```
513
513
514
514
##### Usage
@@ -531,7 +531,7 @@ Shuffles a collection.
531
531
##### File
532
532
533
533
``` typescript
534
- import { ShufflePipe } from ' angular-pipes/src/array/shuffle.pipe ' ;
534
+ import { ShufflePipe } from ' angular-pipes' ;
535
535
```
536
536
537
537
##### Usage
@@ -547,7 +547,7 @@ Take the top `n` items of an array.
547
547
##### File
548
548
549
549
``` typescript
550
- import { TakePipe } from ' angular-pipes/src/array/take.pipe ' ;
550
+ import { TakePipe } from ' angular-pipes' ;
551
551
```
552
552
553
553
##### Usage
@@ -565,7 +565,7 @@ Take until the condition is met.
565
565
##### File
566
566
567
567
``` typescript
568
- import { TakeUntilPipe } from ' angular-pipes/src/array/take-until.pipe ' ;
568
+ import { TakeUntilPipe } from ' angular-pipes' ;
569
569
```
570
570
571
571
##### Usage
@@ -587,7 +587,7 @@ Take while the condition is met.
587
587
##### File
588
588
589
589
``` typescript
590
- import { TakeWhilePipe } from ' angular-pipes/src/array/take-while.pipe ' ;
590
+ import { TakeWhilePipe } from ' angular-pipes' ;
591
591
```
592
592
593
593
##### Usage
@@ -610,7 +610,7 @@ Drop the last `n` items of an array.
610
610
##### File
611
611
612
612
``` typescript
613
- import { DropPipe } from ' angular-pipes/src/array/drop.pipe ' ;
613
+ import { DropPipe } from ' angular-pipes' ;
614
614
```
615
615
616
616
##### Usage
@@ -629,7 +629,7 @@ with deep comparaisons.
629
629
##### File
630
630
631
631
``` typescript
632
- import { DeepPipe } from ' angular-pipes/src/array/deep.pipe ' ;
632
+ import { DeepPipe } from ' angular-pipes' ;
633
633
```
634
634
635
635
##### Usage
@@ -657,7 +657,7 @@ The `chunk` pipe breaks the array into multiple, smaller arrays of a given size:
657
657
##### File
658
658
659
659
``` typescript
660
- import { ChunkPipe } from ' angular-pipes/src/array/chunk.pipe ' ;
660
+ import { ChunkPipe } from ' angular-pipes' ;
661
661
```
662
662
663
663
##### Usage
@@ -675,7 +675,7 @@ The `flatten` flattens an array. It can be used with the `deep` pipe.
675
675
##### File
676
676
677
677
``` typescript
678
- import { FlattenPipe } from ' angular-pipes/src/array/flatten.pipe ' ;
678
+ import { FlattenPipe } from ' angular-pipes' ;
679
679
```
680
680
681
681
##### Usage
0 commit comments