UNPKG

144 BJavaScriptView Raw
1
2function apply (x, f) {
3 return f(x)
4}
5
6function compose (...funcs) {
7 return x => funcs.reduceRight(apply, x)
8}
9
10export {
11 compose
12}