guillaumearm/handle-io

curried io instances and handler instances

guillaumearm opened this issue · 1 comments

instead of replace arguments when we apply several times an io or a handler instance :

const list = (...args) => args;
io(list)(1, 2, 3)(4, 5, 6)(7)(8)(9).run() // => [1, 2, 3, 4, 5, 6, 7, 8, 9]

finally, I think override behavior is better