1.0.4 • Published 7 years ago

combine-nested-reducers v1.0.4

Weekly downloads
8
License
ISC
Repository
-
Last release
7 years ago

combine-nested-reducers

combines nested reducers

Turns

combineNestedReducers({
  domainOne: {
    fun: () => true
  },
  domainTwo: {
    exciting: () => true
  }
})

into

combineReducers({
  domainOne: combineReducers({
    fun: () => true
  }),
  domainTwo: combineReducers({
    exciting: () => true
  })
})

tbh it only saves you a few characters but it looks cleaner imo :rocket:

1.0.4

7 years ago

1.0.2

7 years ago

1.0.0

7 years ago