Files
Readarr/frontend/src/Utilities/State/getSectionState.js
T
2017-09-05 23:00:26 -04:00

10 lines
203 B
JavaScript

function getSectionState(state, section) {
if (state.hasOwnProperty(section)) {
return Object.assign({}, state[section]);
}
return Object.assign({}, state);
}
export default getSectionState;