-
Notifications
You must be signed in to change notification settings - Fork 331
/
Copy pathangular-filter.js
2307 lines (2013 loc) · 59.4 KB
/
angular-filter.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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/**
* Bunch of useful filters for angularJS(with no external dependencies!)
* @version v0.5.8 - 2015-12-21 * @link https://github.com/a8m/angular-filter
* @author Ariel Mashraki <[email protected]>
* @license MIT License, http://www.opensource.org/licenses/MIT
*/
(function ( window, angular, undefined ) {
/*jshint globalstrict:true*/
'use strict';
var isDefined = angular.isDefined,
isUndefined = angular.isUndefined,
isFunction = angular.isFunction,
isString = angular.isString,
isNumber = angular.isNumber,
isObject = angular.isObject,
isArray = angular.isArray,
forEach = angular.forEach,
extend = angular.extend,
copy = angular.copy,
equals = angular.equals;
/**
* @description
* get an object and return array of values
* @param object
* @returns {Array}
*/
function toArray(object) {
return isArray(object)
? object
: Object.keys(object).map(function(key) {
return object[key];
});
}
/**
* @param value
* @returns {boolean}
*/
function isNull(value) {
return value === null;
}
/**
* @description
* return if object contains partial object
* @param partial{object}
* @param object{object}
* @returns {boolean}
*/
function objectContains(partial, object) {
var keys = Object.keys(partial);
return keys.map(function(el) {
return (object[el] !== undefined) && (object[el] == partial[el]);
}).indexOf(false) == -1;
}
/**
* @description
* search for approximate pattern in string
* @param word
* @param pattern
* @returns {*}
*/
function hasApproxPattern(word, pattern) {
if(pattern === '')
return word;
var index = word.indexOf(pattern.charAt(0));
if(index === -1)
return false;
return hasApproxPattern(word.substr(index+1), pattern.substr(1))
}
/**
* @description
* return the first n element of an array,
* if expression provided, is returns as long the expression return truthy
* @param array
* @param n {number}
* @param expression {$parse}
* @return array or single object
*/
function getFirstMatches(array, n, expression) {
var count = 0;
return array.filter(function(elm) {
var rest = isDefined(expression) ? (count < n && expression(elm)) : count < n;
count = rest ? count+1 : count;
return rest;
});
}
/**
* Polyfill to ECMA6 String.prototype.contains
*/
if (!String.prototype.contains) {
String.prototype.contains = function() {
return String.prototype.indexOf.apply(this, arguments) !== -1;
};
}
/**
* @param num {Number}
* @param decimal {Number}
* @param $math
* @returns {Number}
*/
function convertToDecimal(num, decimal, $math){
return $math.round(num * $math.pow(10,decimal)) / ($math.pow(10,decimal));
}
/**
* @description
* Get an object, and return an array composed of it's properties names(nested too).
* @param obj {Object}
* @param stack {Array}
* @param parent {String}
* @returns {Array}
* @example
* parseKeys({ a:1, b: { c:2, d: { e: 3 } } }) ==> ["a", "b.c", "b.d.e"]
*/
function deepKeys(obj, stack, parent) {
stack = stack || [];
var keys = Object.keys(obj);
keys.forEach(function(el) {
//if it's a nested object
if(isObject(obj[el]) && !isArray(obj[el])) {
//concatenate the new parent if exist
var p = parent ? parent + '.' + el : parent;
deepKeys(obj[el], stack, p || el);
} else {
//create and save the key
var key = parent ? parent + '.' + el : el;
stack.push(key)
}
});
return stack
}
/**
* @description
* Test if given object is a Scope instance
* @param obj
* @returns {Boolean}
*/
function isScope(obj) {
return obj && obj.$evalAsync && obj.$watch;
}
/**
* @ngdoc filter
* @name a8m.angular
* @kind function
*
* @description
* reference to angular function
*/
angular.module('a8m.angular', [])
.filter('isUndefined', function () {
return function (input) {
return angular.isUndefined(input);
}
})
.filter('isDefined', function() {
return function (input) {
return angular.isDefined(input);
}
})
.filter('isFunction', function() {
return function (input) {
return angular.isFunction(input);
}
})
.filter('isString', function() {
return function (input) {
return angular.isString(input)
}
})
.filter('isNumber', function() {
return function (input) {
return angular.isNumber(input);
}
})
.filter('isArray', function() {
return function (input) {
return angular.isArray(input);
}
})
.filter('isObject', function() {
return function (input) {
return angular.isObject(input);
}
})
.filter('isEqual', function() {
return function (o1, o2) {
return angular.equals(o1, o2);
}
});
/**
* @ngdoc filter
* @name a8m.conditions
* @kind function
*
* @description
* reference to math conditions
*/
angular.module('a8m.conditions', [])
.filter({
isGreaterThan : isGreaterThanFilter,
'>' : isGreaterThanFilter,
isGreaterThanOrEqualTo : isGreaterThanOrEqualToFilter,
'>=' : isGreaterThanOrEqualToFilter,
isLessThan : isLessThanFilter,
'<' : isLessThanFilter,
isLessThanOrEqualTo : isLessThanOrEqualToFilter,
'<=' : isLessThanOrEqualToFilter,
isEqualTo : isEqualToFilter,
'==' : isEqualToFilter,
isNotEqualTo : isNotEqualToFilter,
'!=' : isNotEqualToFilter,
isIdenticalTo : isIdenticalToFilter,
'===' : isIdenticalToFilter,
isNotIdenticalTo : isNotIdenticalToFilter,
'!==' : isNotIdenticalToFilter
});
function isGreaterThanFilter() {
return function (input, check) {
return input > check;
};
}
function isGreaterThanOrEqualToFilter() {
return function (input, check) {
return input >= check;
};
}
function isLessThanFilter() {
return function (input, check) {
return input < check;
};
}
function isLessThanOrEqualToFilter() {
return function (input, check) {
return input <= check;
};
}
function isEqualToFilter() {
return function (input, check) {
return input == check;
};
}
function isNotEqualToFilter() {
return function (input, check) {
return input != check;
};
}
function isIdenticalToFilter() {
return function (input, check) {
return input === check;
};
}
function isNotIdenticalToFilter() {
return function (input, check) {
return input !== check;
};
}
/**
* @ngdoc filter
* @name isNull
* @kind function
*
* @description
* checks if value is null or not
* @return Boolean
*/
angular.module('a8m.is-null', [])
.filter('isNull', function () {
return function(input) {
return isNull(input);
}
});
/**
* @ngdoc filter
* @name after-where
* @kind function
*
* @description
* get a collection and properties object, and returns all of the items
* in the collection after the first that found with the given properties.
*
*/
angular.module('a8m.after-where', [])
.filter('afterWhere', function() {
return function (collection, object) {
collection = isObject(collection)
? toArray(collection)
: collection;
if(!isArray(collection) || isUndefined(object)) return collection;
var index = collection.map( function( elm ) {
return objectContains(object, elm);
}).indexOf( true );
return collection.slice((index === -1) ? 0 : index);
}
});
/**
* @ngdoc filter
* @name after
* @kind function
*
* @description
* get a collection and specified count, and returns all of the items
* in the collection after the specified count.
*
*/
angular.module('a8m.after', [])
.filter('after', function() {
return function (collection, count) {
collection = isObject(collection)
? toArray(collection)
: collection;
return (isArray(collection))
? collection.slice(count)
: collection;
}
});
/**
* @ngdoc filter
* @name before-where
* @kind function
*
* @description
* get a collection and properties object, and returns all of the items
* in the collection before the first that found with the given properties.
*/
angular.module('a8m.before-where', [])
.filter('beforeWhere', function() {
return function (collection, object) {
collection = isObject(collection)
? toArray(collection)
: collection;
if(!isArray(collection) || isUndefined(object)) return collection;
var index = collection.map( function( elm ) {
return objectContains(object, elm);
}).indexOf( true );
return collection.slice(0, (index === -1) ? collection.length : ++index);
}
});
/**
* @ngdoc filter
* @name before
* @kind function
*
* @description
* get a collection and specified count, and returns all of the items
* in the collection before the specified count.
*/
angular.module('a8m.before', [])
.filter('before', function() {
return function (collection, count) {
collection = isObject(collection)
? toArray(collection)
: collection;
return (isArray(collection))
? collection.slice(0, (!count) ? count : --count)
: collection;
}
});
/**
* @ngdoc filter
* @name chunkBy
* @kind function
*
* @description
* Collect data into fixed-length chunks or blocks
*/
angular.module('a8m.chunk-by', ['a8m.filter-watcher'])
.filter('chunkBy', ['filterWatcher', function (filterWatcher) {
return function (array, n, fillVal) {
return filterWatcher.isMemoized('chunkBy', arguments) ||
filterWatcher.memoize('chunkBy', arguments, this,
_chunkBy(array, n, fillVal));
/**
* @description
* Get array with size `n` in `val` inside it.
* @param n
* @param val
* @returns {Array}
*/
function fill(n, val) {
var ret = [];
while (n--) ret[n] = val;
return ret;
}
function _chunkBy(array, n, fillVal) {
if (!isArray(array)) return array;
return array.map(function (el, i, self) {
i = i * n;
el = self.slice(i, i + n);
return !isUndefined(fillVal) && el.length < n
? el.concat(fill(n - el.length, fillVal))
: el;
}).slice(0, Math.ceil(array.length / n));
}
}
}]);
/**
* @ngdoc filter
* @name concat
* @kind function
*
* @description
* get (array/object, object/array) and return merged collection
*/
angular.module('a8m.concat', [])
.filter('concat', [function () {
return function (collection, joined) {
if (isUndefined(joined)) return collection;
if (isArray(collection)) {
return isObject(joined)
? collection.concat(toArray(joined))
: collection.concat(joined);
}
if (isObject(collection)) {
var array = toArray(collection);
return (isObject(joined))
? array.concat(toArray(joined))
: array.concat(joined);
}
return collection;
};
}
]);
/**
* @ngdoc filter
* @name contains
* @kind function
*
* @description
* Checks if given expression is present in one or more object in the collection
*/
angular.module('a8m.contains', [])
.filter({
contains: ['$parse', containsFilter],
some: ['$parse', containsFilter]
});
function containsFilter($parse) {
return function (collection, expression) {
collection = isObject(collection) ? toArray(collection) : collection;
if(!isArray(collection) || isUndefined(expression)) {
return false;
}
return collection.some(function(elm) {
return (isObject(elm) || isFunction(expression))
? $parse(expression)(elm)
: elm === expression;
});
}
}
/**
* @ngdoc filter
* @name countBy
* @kind function
*
* @description
* Sorts a list into groups and returns a count for the number of objects in each group.
*/
angular.module('a8m.count-by', [])
.filter('countBy', [ '$parse', function ( $parse ) {
return function (collection, property) {
var result = {},
get = $parse(property),
prop;
collection = (isObject(collection)) ? toArray(collection) : collection;
if(!isArray(collection) || isUndefined(property)) {
return collection;
}
collection.forEach( function( elm ) {
prop = get(elm);
if(!result[prop]) {
result[prop] = 0;
}
result[prop]++;
});
return result;
}
}]);
/**
* @ngdoc filter
* @name defaults
* @kind function
*
* @description
* defaultsFilter allows to specify a default fallback value for properties that resolve to undefined.
*/
angular.module('a8m.defaults', [])
.filter('defaults', ['$parse', function( $parse ) {
return function(collection, defaults) {
collection = isObject(collection) ? toArray(collection) : collection;
if(!isArray(collection) || !isObject(defaults)) {
return collection;
}
var keys = deepKeys(defaults);
collection.forEach(function(elm) {
//loop through all the keys
keys.forEach(function(key) {
var getter = $parse(key);
var setter = getter.assign;
//if it's not exist
if(isUndefined(getter(elm))) {
//get from defaults, and set to the returned object
setter(elm, getter(defaults))
}
});
});
return collection;
}
}]);
/**
* @ngdoc filter
* @name every
* @kind function
*
* @description
* Checks if given expression is present in all members in the collection
*
*/
angular.module('a8m.every', [])
.filter('every', ['$parse', function($parse) {
return function (collection, expression) {
collection = isObject(collection) ? toArray(collection) : collection;
if(!isArray(collection) || isUndefined(expression)) {
return true;
}
return collection.every( function(elm) {
return (isObject(elm) || isFunction(expression))
? $parse(expression)(elm)
: elm === expression;
});
}
}]);
/**
* @ngdoc filter
* @name filterBy
* @kind function
*
* @description
* filter by specific properties, avoid the rest
*/
angular.module('a8m.filter-by', [])
.filter('filterBy', ['$parse', function( $parse ) {
return function(collection, properties, search, strict) {
var comparator;
search = (isString(search) || isNumber(search)) ?
String(search).toLowerCase() : undefined;
collection = isObject(collection) ? toArray(collection) : collection;
if(!isArray(collection) || isUndefined(search)) {
return collection;
}
return collection.filter(function(elm) {
return properties.some(function(prop) {
/**
* check if there is concatenate properties
* example:
* object: { first: 'foo', last:'bar' }
* filterBy: ['first + last'] => search by full name(i.e 'foo bar')
*/
if(!~prop.indexOf('+')) {
comparator = $parse(prop)(elm)
} else {
var propList = prop.replace(/\s+/g, '').split('+');
comparator = propList
.map(function(prop) { return $parse(prop)(elm); })
.join(' ');
}
if (!isString(comparator) && !isNumber(comparator)) {
return false;
}
comparator = String(comparator).toLowerCase();
return strict ? comparator === search : comparator.contains(search);
});
});
}
}]);
/**
* @ngdoc filter
* @name first
* @kind function
*
* @description
* Gets the first element or first n elements of an array
* if callback is provided, is returns as long the callback return truthy
*/
angular.module('a8m.first', [])
.filter('first', ['$parse', function( $parse ) {
return function(collection) {
var n
, getter
, args;
collection = isObject(collection)
? toArray(collection)
: collection;
if(!isArray(collection)) {
return collection;
}
args = Array.prototype.slice.call(arguments, 1);
n = (isNumber(args[0])) ? args[0] : 1;
getter = (!isNumber(args[0])) ? args[0] : (!isNumber(args[1])) ? args[1] : undefined;
return (args.length) ? getFirstMatches(collection, n,(getter) ? $parse(getter) : getter) :
collection[0];
}
}]);
/**
* @ngdoc filter
* @name flatten
* @kind function
*
* @description
* Flattens a nested array (the nesting can be to any depth).
* If you pass shallow, the array will only be flattened a single level
*/
angular.module('a8m.flatten', [])
.filter('flatten', function () {
return function(collection, shallow) {
shallow = shallow || false;
collection = isObject(collection)
? toArray(collection)
: collection;
if(!isArray(collection)) {
return collection;
}
return !shallow
? flatten(collection, 0)
: [].concat.apply([], collection);
}
});
/**
* flatten nested array (the nesting can be to any depth).
* @param array {Array}
* @param i {int}
* @returns {Array}
* @private
*/
function flatten(array, i) {
i = i || 0;
if(i >= array.length)
return array;
if(isArray(array[i])) {
return flatten(array.slice(0,i)
.concat(array[i], array.slice(i+1)), i);
}
return flatten(array, i+1);
}
/**
* @ngdoc filter
* @name fuzzyByKey
* @kind function
*
* @description
* fuzzy string searching by key
*/
angular.module('a8m.fuzzy-by', [])
.filter('fuzzyBy', ['$parse', function ( $parse ) {
return function (collection, property, search, csensitive) {
var sensitive = csensitive || false,
prop, getter;
collection = isObject(collection) ? toArray(collection) : collection;
if(!isArray(collection) || isUndefined(property)
|| isUndefined(search)) {
return collection;
}
getter = $parse(property);
return collection.filter(function(elm) {
prop = getter(elm);
if(!isString(prop)) {
return false;
}
prop = (sensitive) ? prop : prop.toLowerCase();
search = (sensitive) ? search : search.toLowerCase();
return hasApproxPattern(prop, search) !== false
})
}
}]);
/**
* @ngdoc filter
* @name fuzzy
* @kind function
*
* @description
* fuzzy string searching for array of strings, objects
*/
angular.module('a8m.fuzzy', [])
.filter('fuzzy', function () {
return function (collection, search, csensitive) {
var sensitive = csensitive || false;
collection = isObject(collection) ? toArray(collection) : collection;
if(!isArray(collection) || isUndefined(search)) {
return collection;
}
search = (sensitive) ? search : search.toLowerCase();
return collection.filter(function(elm) {
if(isString(elm)) {
elm = (sensitive) ? elm : elm.toLowerCase();
return hasApproxPattern(elm, search) !== false
}
return (isObject(elm)) ? _hasApproximateKey(elm, search) : false;
});
/**
* checks if object has key{string} that match
* to fuzzy search pattern
* @param object
* @param search
* @returns {boolean}
* @private
*/
function _hasApproximateKey(object, search) {
var properties = Object.keys(object),
prop, flag;
return 0 < properties.filter(function (elm) {
prop = object[elm];
//avoid iteration if we found some key that equal[performance]
if(flag) return true;
if (isString(prop)) {
prop = (sensitive) ? prop : prop.toLowerCase();
return flag = (hasApproxPattern(prop, search) !== false);
}
return false;
}).length;
}
}
});
/**
* @ngdoc filter
* @name groupBy
* @kind function
*
* @description
* Create an object composed of keys generated from the result of running each element of a collection,
* each key is an array of the elements.
*/
angular.module('a8m.group-by', [ 'a8m.filter-watcher' ])
.filter('groupBy', [ '$parse', 'filterWatcher', function ( $parse, filterWatcher ) {
return function (collection, property) {
if(!isObject(collection) || isUndefined(property)) {
return collection;
}
if (filterWatcher.isMemoized('groupBy', arguments))
return filterWatcher.isMemoized('groupBy', arguments);
var getters = [];
if (angular.isArray(property)) {
forEach(property, function(prop) {
getters.push($parse(prop));
})
} else {
getters.push($parse(property));
}
return filterWatcher.memoize('groupBy', arguments, this,
_groupBy(collection, getters));
/**
* groupBy function
* @param collection
* @param getters
* @returns {{}}
*/
function _groupBy(collection, getters) {
var result = {};
forEach( collection, function( elm ) {
var prop = [];
forEach(getters, function(getter) {
var p = getter(elm);
if (angular.isUndefined(p))
p = 'undefined';
prop.push(p);
})
if(!result[prop]) {
result[prop] = [];
}
result[prop].push(elm);
});
return result;
}
}
}]);
/**
* @ngdoc filter
* @name isEmpty
* @kind function
*
* @description
* get collection or string and return if it empty
*/
angular.module('a8m.is-empty', [])
.filter('isEmpty', function () {
return function(collection) {
return isObject(collection)
? !toArray(collection).length
: !collection.length;
}
});
/**
* @ngdoc filter
* @name join
* @kind function
*
* @description
* join a collection by a provided delimiter (space by default)
*/
angular.module('a8m.join', [])
.filter('join', function () {
return function (input, delimiter) {
if (isUndefined(input) || !isArray(input)) {
return input;
}
if (isUndefined(delimiter)) delimiter = ' ';
return input.join(delimiter);
};
})
;
/**
* @ngdoc filter
* @name last
* @kind function
*
* @description
* Gets the last element or last n elements of an array
* if callback is provided, is returns as long the callback return truthy
*/
angular.module('a8m.last', [])
.filter('last', ['$parse', function( $parse ) {
return function(collection) {
var n
, getter
, args
//cuz reverse change our src collection
//and we don't want side effects
, reversed = copy(collection);
reversed = isObject(reversed)
? toArray(reversed)
: reversed;
if(!isArray(reversed)) {
return reversed;
}
args = Array.prototype.slice.call(arguments, 1);
n = (isNumber(args[0])) ? args[0] : 1;
getter = (!isNumber(args[0])) ? args[0] : (!isNumber(args[1])) ? args[1] : undefined;
return (args.length)
//send reversed collection as arguments, and reverse it back as result
? getFirstMatches(reversed.reverse(), n,(getter) ? $parse(getter) : getter).reverse()
//get the last element
: reversed[reversed.length-1];
}
}]);
/**
* @ngdoc filter
* @name map
* @kind function
*
* @description
* Returns a new collection of the results of each expression execution.
*/
angular.module('a8m.map', [])
.filter('map', ['$parse', function($parse) {
return function (collection, expression) {
collection = isObject(collection)
? toArray(collection)
: collection;
if(!isArray(collection) || isUndefined(expression)) {
return collection;