(value, index)
| 19951 | return array; |
| 19952 | |
| 19953 | function getComparisonObject(value, index) { |
| 19954 | return { |
| 19955 | value: value, |
| 19956 | predicateValues: predicates.map(function(predicate) { |
| 19957 | return getPredicateValue(predicate.get(value), index); |
| 19958 | }) |
| 19959 | }; |
| 19960 | } |
| 19961 | |
| 19962 | function doComparison(v1, v2) { |
| 19963 | var result = 0; |
nothing calls this directly
no test coverage detected