UNPKG

115 BJavaScriptView Raw
1const composeRight = (...fns) =>
2 fns.reduce((f, g) => (...args) => g(f(...args)));
3
4export default composeRight;