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.
		
		
		
		
		
			
		
			
				
					
					
						
							18 lines
						
					
					
						
							501 B
						
					
					
				
			
		
		
	
	
							18 lines
						
					
					
						
							501 B
						
					
					
				var serialOrdered = require('./serialOrdered.js');
 | 
						|
 | 
						|
// Public API
 | 
						|
module.exports = serial;
 | 
						|
 | 
						|
/**
 | 
						|
 * Runs iterator over provided array elements in series
 | 
						|
 *
 | 
						|
 * @param   {array|object} list - array or object (named list) to iterate over
 | 
						|
 * @param   {function} iterator - iterator to run
 | 
						|
 * @param   {function} callback - invoked when all elements processed
 | 
						|
 * @returns {function} - jobs terminator
 | 
						|
 */
 | 
						|
function serial(list, iterator, callback)
 | 
						|
{
 | 
						|
  return serialOrdered(list, iterator, null, callback);
 | 
						|
}
 |