histable
v1.1.0
Published
Maintains history of state changes
Downloads
38
Maintainers
Readme
Histable
A no external dependency module that maintains the history of state changes.
Installation
npm i histable --save
Usage
const histable = require('histable')
const history = histable.create()
history.push(1)
history.push(2)
history.push(3)
history.undo() // 2
history.undo() // 1
history.undo() // undefined
API DOCUMENTATION
Why this name?
History + Immutable = Histable — so couldn't think of anything better.