| Conditions | 7 |
| Paths | 3 |
| Total Lines | 10 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | /** |
||
| 29 | export function byDateAsc(a, b) { |
||
| 30 | var dateA = (a.abe_meta.publish != null && a.abe_meta.publish.latest != null) ? new Date(a.abe_meta.publish.latest.date) : 0 |
||
| 31 | var dateB = (b.abe_meta.publish != null && b.abe_meta.publish.latest) ? new Date(b.abe_meta.publish.latest.date) : 0 |
||
| 32 | if(dateA > dateB) { |
||
| 33 | return 1 |
||
| 34 | }else if(dateA < dateB) { |
||
| 35 | return -1 |
||
| 36 | } |
||
| 37 | return 0 |
||
| 38 | } |