2.0.0-rc.2 • Published 3 months ago

@tanyaisinmybed/effector-undo v2.0.0-rc.2

Weekly downloads
2
License
ISC
Repository
github
Last release
3 months ago

effector-undo

Simple undo/redo functionality for effector

Example

import { createHistory } from "@tanyaisinmybed/effector-undo";

export const { undo, redo, clear, $history } = createHistory({
  store: counter,
  limit: 10,
  events: [inc, dec],
  filter: (lastState, state) => state - lastState > 3,
});

codesandbox