Package Exports
- redux-camelizer
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (redux-camelizer) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
redux-camelizer
Camlize middleware for Redux
Instllation
npm install redux-camelizer --save
Usage example
import { createStore, applyMiddleware, combineReducers } from 'redux';
import createCamelizer from 'redux-camelizer';
import reducers from './reducers';
const reducer = combineReducers(reducers);
const camelizer = createCamelizer(['FETCH_SUCCESS'])
const store = createStore(reducer applyMiddleware(camelizer));