redux-fluorine
Version:
A Redux enhancer to manage groups of actions as observables (agendas)
15 lines (13 loc) • 341 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = filterActions;
var RECOVER_AFTER_ERROR = exports.RECOVER_AFTER_ERROR = '@@redux-fluorine/RECOVER_AFTER_ERROR';
function filterActions(anchor, actions) {
return {
type: RECOVER_AFTER_ERROR,
anchor: anchor,
actions: actions
};
}