forked from DebaucheryLibrarian/traxxx
9 lines
175 B
JavaScript
Executable File
9 lines
175 B
JavaScript
Executable File
function favoritesStash(state) {
|
|
return state.user.stashes.find((stash) => stash.slug === 'favorites');
|
|
}
|
|
|
|
module.exports = {
|
|
favoritesStash,
|
|
favorites: favoritesStash,
|
|
};
|