UNPKG

238 BJavaScriptView Raw
1"use strict"
2
3var compose = function(f){
4 var fns = arguments, l = fns.length
5 if (l == 1) return f
6 return function(x){
7 while (l--){
8 x = fns[l](x)
9 }
10 return x
11 }
12}
13
14module.exports = compose