Combine multiple reducers into one that will pipe state through the provided reducers one-by-one,
passing the result of the previous reducer as an input of the next one.
Allows having null or undefined reducers in the list. They will be treated as identity function and will
pass the state forward without any modifications.
Combine multiple reducers into one that will pipe
state
through the provided reducers one-by-one, passing the result of the previous reducer as an input of the next one.Allows having
null
orundefined
reducers in the list. They will be treated as identity function and will pass the state forward without any modifications.