We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0474f3c commit fbc4ad7Copy full SHA for fbc4ad7
src/_filter/collection/group-by.js
@@ -16,11 +16,9 @@ angular.module('a8m.group-by', [ 'a8m.filter-watcher' ])
16
return collection;
17
}
18
19
- var getterFn = $parse(property);
20
-
21
return filterWatcher.isMemoized('groupBy', arguments) ||
22
filterWatcher.memoize('groupBy', arguments, this,
23
- _groupBy(collection, getterFn));
+ _groupBy(collection, $parse(property)));
24
25
/**
26
* groupBy function
0 commit comments