You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
411 B
15 lines
411 B
3 years ago
|
// Returns a function that is the composition of a list of functions, each
|
||
|
// consuming the return value of the function that follows.
|
||
|
function compose() {
|
||
|
var args = arguments;
|
||
|
var start = args.length - 1;
|
||
|
return function() {
|
||
|
var i = start;
|
||
|
var result = args[start].apply(this, arguments);
|
||
|
while (i--) result = args[i].call(this, result);
|
||
|
return result;
|
||
|
};
|
||
|
}
|
||
|
|
||
|
module.exports = compose;
|