This repository has been archived by the owner on May 20, 2018. It is now read-only.
Releases: qwtel/flurx
Releases · qwtel/flurx
0.2.2
- Removed implicit
Success
andFailure
actions, because they would no longer be present after any instance method (likemap
ortap
) has been called on an action.
e.g.
const action = Action.create();
const mappedAction = action.map(x => x + 1);
const store = new Store();
store.register(mappedAction, ...) // failed, because `mappedAction.Success` is undefined