uuidzyl
Results
1
comments of
uuidzyl
```javascript let compose = (...fns) => (arg) => { return dispatch(0) function dispatch(index) { arg = fns[index](arg) if (index === fns.length - 1) return arg else return dispatch(++index) } }...