Skip to content
This repository has been archived by the owner on May 20, 2018. It is now read-only.

0.2.2

Latest
Compare
Choose a tag to compare
@qwtel qwtel released this 07 Apr 20:07
  • Removed implicit Success and Failure actions, because they would no longer be present after any instance method (like map or tap) 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