mirror of
https://github.com/ThatGuySam/doesitarm.git
synced 2026-05-15 06:35:20 -07:00
18 lines
438 B
JavaScript
18 lines
438 B
JavaScript
import appList from '~/static/app-list.json'
|
|
import gameList from '~/static/game-list.json'
|
|
import homebrewList from '~/static/homebrew-list.json'
|
|
|
|
import { byTimeThenNull } from '~/helpers/sort-list.js'
|
|
|
|
export const allVideoList = [
|
|
...appList.sort(byTimeThenNull),
|
|
...gameList,
|
|
]
|
|
|
|
export const sortedAppList = appList.sort(byTimeThenNull)
|
|
|
|
export const allList = [
|
|
...sortedAppList,
|
|
...homebrewList,
|
|
...gameList,
|
|
]
|