1.0.2 • Published 4 years ago

easy-undo-redo v1.0.2

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

What is Easy Undo Redo?

Get the most easiest undo redo feature for your npm project

Installation

npm install easyUndoRedo --save

Initial easyUndoRedo() with some options paramiter.
import {easyUndoRedo} from 'easy-undo-redo';

var UndoRedo = new easyUndoRedo({
   stackLength : 20,
   initialValue : "Your initial data"
});
UndoRedo.save("Your updated data");
UndoRedo.undo(); //returns undo result
UndoRedo.redo(); //returns redo result
1.0.2

4 years ago

1.0.1

4 years ago

1.0.0

4 years ago