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.
		
		
		
		
		
			
		
			
				
					
					
						
							13 lines
						
					
					
						
							399 B
						
					
					
				
			
		
		
	
	
							13 lines
						
					
					
						
							399 B
						
					
					
				// Returns a function that is the composition of a list of functions, each
 | 
						|
// consuming the return value of the function that follows.
 | 
						|
export default 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;
 | 
						|
  };
 | 
						|
}
 |