1.0.0 • Published 4 years ago

@tanyaisinmybed/effector-undo v1.0.0

Weekly downloads
2
License
ISC
Repository
github
Last release
4 years ago

effector-undo

Simple undo/redo functionality for effector

Example

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

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

codesandbox