mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-25 22:36:59 -04:00
10 lines
203 B
JavaScript
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;
|