Skip to content

1.0.0

Choose a tag to compare

@mhelmer mhelmer released this 03 Apr 19:10
· 61 commits to master since this release

Added

  • README
  • Build/setup: babel, jest, eslint, esdoc
  • withInitialState: Creates a reducer transformer that will inject initial state before calling the reducing function.
  • withFilter: Creates a reducer transformer that will filter based on the action.
  • updateSlice: Creates a reducer transformer that updates only one slice of the state based on the action.
  • isolateSlice: Creates a reducer transformer that calls the reducer with only a slice of the state, based on the action.
  • withOldStateIfEqual: Creates a reducer transformer that will compare the old and new state with a custom function, and re-use the old state if it returns true.
  • createByKey: Creates a reducer transformer that adds byKey-filtering.
  • createGetByKey: Creates a selector transformer with byKey-filtering.
  • withReducer: Creates a reducer transformer that applies an injected reducer before applying the next reducer.
  • Examples