Name: Anonymous 2012-09-27 1:26
Is there a smarter/better way to write this?
function c() {
var fs = arguments;
return function(x) {
return Array.prototype.reduceRight.call(fs, function(x, f) {
return f(x);
}, x);
}
}