flo-bind
v1.1.1
Published
Flo bind.
Downloads
8
Readme
flo-bind
Bind a redux middleware stack that has redux-flo at the top.
Installation
$ npm install flo-bind
Usage
import flob from 'flo-bind'
import rlog from 'redux-log'
let arr = []
let log = flob(rlog(arr))
log(function * () {
yield 'hello'
yield 'world'
})
arr // => ['hello', 'world']
API
flo-bind(...mw)
mw
- redux middleware
Returns: a function that dispatches actions to the middleware stack
License
MIT