(state, key = 'global')
| 7 | import { getRecentlyViewedItem } from 'app/storage'; |
| 8 | |
| 9 | function selectTimestamp(state, key = 'global') { |
| 10 | return state.mutation[key] || state.mutation.global; |
| 11 | } |
| 12 | |
| 13 | function selectObject(state, objects, id, mutationKey) { |
| 14 | if (!id || !_.has(objects, id)) { |