(state, entitySetId)
| 257 | } |
| 258 | |
| 259 | export function selectEntitySet(state, entitySetId) { |
| 260 | return selectObject(state, state.entitySets, entitySetId); |
| 261 | } |
| 262 | |
| 263 | export function selectEntitySetItem(state, itemId) { |
| 264 | const item = selectObject(state, state.entitySetItems, itemId); |
no test coverage detected