UNPKG

accelerator-core

Version:

[![Build Status](https://travis-ci.org/furkleindustries/accelerator-core.svg?branch=master)](https://travis-ci.org/furkleindustries/accelerator-core)

12 lines (9 loc) 206 B
import { ActionCreators, } from 'redux-undo'; export function createStoryRewindAction(index?: number) { if (index) { return ActionCreators.jumpToPast(index); } return ActionCreators.undo(); }