(a: Theme, b: Theme)
| 15 | } |
| 16 | |
| 17 | export function byLatestCatalogEntry(a: Theme, b: Theme) { |
| 18 | return b.data.catalogIndex - a.data.catalogIndex |
| 19 | } |
| 20 | |
| 21 | export function formatDate(value: string | null) { |
| 22 | if (!value) return 'Unknown' |
nothing calls this directly
no outgoing calls
no test coverage detected