getStateName.js 342 B

123456789101112
  1. 'use strict';
  2. Object.defineProperty(exports, "__esModule", {
  3. value: true
  4. });
  5. exports.default = function (action) {
  6. return action && action.type === '@@redux/INIT' ? 'initialState argument passed to createStore' : 'previous state received by the reducer';
  7. };
  8. module.exports = exports['default'];
  9. //# sourceMappingURL=getStateName.js.map