多应用+插件架构,代码干净,二开方便,首家独创一键云编译技术,文档视频完善,免费商用码云13.8K 广告
[TOC] ## compose ### hello world ``` var compose =function(f,g){ return function(x){ return f(g(x)) } } var append1=x=>x+"_1" var append2=x=>x+"_2" var c = compose(append1,append2) console.log(c("ads")); //ads_2_1 ```