(theme: Theme)
| 11 | } |
| 12 | |
| 13 | export function isVisibleTheme(theme: Theme) { |
| 14 | return theme.data.status === 'published' || theme.data.status === 'archived' |
| 15 | } |
| 16 | |
| 17 | export function byLatestCatalogEntry(a: Theme, b: Theme) { |
| 18 | return b.data.catalogIndex - a.data.catalogIndex |
nothing calls this directly
no outgoing calls
no test coverage detected