mirror of
https://github.com/ThatGuySam/doesitarm.git
synced 2026-05-18 06:44:46 -07:00
16 lines
394 B
JavaScript
16 lines
394 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 allList = [
|
|
...appList.sort(byTimeThenNull),
|
|
...homebrewList,
|
|
...gameList,
|
|
]
|