redux-immutable
Version:
redux-immutable is used to create an equivalent function of Redux combineReducers that works with Immutable.js state.
12 lines (9 loc) • 342 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = function (action) {
return action && action.type === '@@redux/INIT' ? 'initialState argument passed to createStore' : 'previous state received by the reducer';
};
module.exports = exports['default'];
//# sourceMappingURL=getStateName.js.map