(a, b)
| 574 | } |
| 575 | |
| 576 | function ascendingDefined(a, b) { |
| 577 | return (a == null || !(a >= a)) - (b == null || !(b >= b)) || (a < b ? -1 : a > b ? 1 : 0); |
| 578 | } |
| 579 | |
| 580 | function groupSort(values, reduce, key) { |
| 581 | return (reduce.length !== 2 |
no outgoing calls
no test coverage detected