introspect the state of a reducible
var introspect = require("introspect-reduce")
var thing = introspect(someReducible(), "what is in thing?")
// introspect will log `what is in thing {{VALUE}}` for everything
// that comes out of `someReducible()`
fold(thing, function () {
// do stuff
})
npm install introspect-reduce
- Raynos