This repository has been archived by the owner on May 20, 2018. It is now read-only.
- 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