@f/combine-reducers

1.2.1 • Public • Published

combine-reducers

Build status Git tag NPM version Code style

Combines an object of reducers together to form a single, composite reducer. This function is identical to the one provided by redux but it doesn't do the sanity checks that redux does, which allows you to do a few things like having multiple root reducers combined into one that you can't do with redux's assertions.

Installation

$ npm install @f/combine-reducers

Usage

var combineReducers = require('@f/combine-reducers')

combineReducers({
  counter1: counterReducer,
  counter2: counterReducer
})

function counterReducer (state, action) {
  if (action.type === INCREMENT) {
    return ++state
  }

  return state
}

API

combineReducers(reducers)

  • reducers - An object containing a map of reducers to property names
  • defaultState - Optional. Specify a default value for the state object. Useful for nesting combineReducers calls.

Returns: The combined reducer map as a single reducing function.

License

MIT

Readme

Keywords

none

Package Sidebar

Install

npm i @f/combine-reducers

Weekly Downloads

2

Version

1.2.1

License

MIT

Last publish

Collaborators

  • f