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.
		
		
		
		
		
			
		
			
				
					
					
						
							19 lines
						
					
					
						
							454 B
						
					
					
				
			
		
		
	
	
							19 lines
						
					
					
						
							454 B
						
					
					
				| define(function () {
 | |
| 
 | |
|   // 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;
 | |
|     };
 | |
|   }
 | |
| 
 | |
|   return compose;
 | |
| 
 | |
| });
 |