source: node_modules/redux-immutable/dist/utilities/getStateName.js@ 65b6638

main
Last change on this file since 65b6638 was d24f17c, checked in by Aleksandar Panovski <apano77@…>, 15 months ago

Initial commit

  • Property mode set to 100644
File size: 342 bytes
Line 
1'use strict';
2
3Object.defineProperty(exports, "__esModule", {
4 value: true
5});
6
7exports.default = function (action) {
8 return action && action.type === '@@redux/INIT' ? 'initialState argument passed to createStore' : 'previous state received by the reducer';
9};
10
11module.exports = exports['default'];
12//# sourceMappingURL=getStateName.js.map
Note: See TracBrowser for help on using the repository browser.