mirror of
				https://github.com/flynx/colors.js.git
				synced 2025-10-31 12:00:08 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			346 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			346 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| module['exports'] = function(colors) {
 | |
|   var available = ['underline', 'inverse', 'grey', 'yellow', 'red', 'green',
 | |
|     'blue', 'white', 'cyan', 'magenta'];
 | |
|   return function(letter, i, exploded) {
 | |
|     return letter === ' ' ? letter :
 | |
|       colors[
 | |
|           available[Math.round(Math.random() * (available.length - 2))]
 | |
|       ](letter);
 | |
|   };
 | |
| };
 |