Conditions | 7 |
Paths | 3 |
Total Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | /** |
||
10 | export function byDateDesc(a, b) { |
||
11 | var dateA = (a.abe_meta.publish != null && a.abe_meta.publish.latest != null) ? new Date(a.abe_meta.publish.latest.date) : 0 |
||
12 | var dateB = (b.abe_meta.publish != null && b.abe_meta.publish.latest) ? new Date(b.abe_meta.publish.latest.date) : 0 |
||
13 | if(dateA < dateB) { |
||
14 | return 1 |
||
15 | }else if(dateA > dateB) { |
||
16 | return -1 |
||
17 | } |
||
18 | return 0 |
||
19 | } |
||
20 | /** |
||
38 | } |