doesitarm/helpers/get-list.js
2020-11-27 23:07:46 -06:00

12 lines
308 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 allList = [
...appList.sort(byTimeThenNull),
...homebrewList,
...gameList,
]