1.0.0 • Published 8 years ago

create-redux-reducer-from-map v1.0.0

Weekly downloads
4
License
WTFPL
Repository
github
Last release
8 years ago

My own personal preference for building reducers for Redux.

var makeReducer = require('create-redux-reducer-from-map')

const arithmeticReducer = makeReducer({
	ADD: (state, action) => state + action.payload,
	SUBTRACT: (state, action) => state - action.payload
}, 0)

makeReducer(mapOfFunctions, initialState)

Returns a reducer appropriate for Redux. Takes an map of action types to functions taking (state, action).

License

WTFPL