mirror of
				https://github.com/shivammathur/setup-php.git
				synced 2025-11-04 17:06:37 +07:00 
			
		
		
		
	
		
			
	
	
		
			16 lines
		
	
	
		
			349 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
		
		
			
		
	
	
			16 lines
		
	
	
		
			349 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| 
								 | 
							
								/**
							 | 
						||
| 
								 | 
							
								Strip [ANSI escape codes](https://en.wikipedia.org/wiki/ANSI_escape_code) from a string.
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								@example
							 | 
						||
| 
								 | 
							
								```
							 | 
						||
| 
								 | 
							
								import stripAnsi from 'strip-ansi';
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								stripAnsi('\u001B[4mUnicorn\u001B[0m');
							 | 
						||
| 
								 | 
							
								//=> 'Unicorn'
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								stripAnsi('\u001B]8;;https://github.com\u0007Click\u001B]8;;\u0007');
							 | 
						||
| 
								 | 
							
								//=> 'Click'
							 | 
						||
| 
								 | 
							
								```
							 | 
						||
| 
								 | 
							
								*/
							 | 
						||
| 
								 | 
							
								export default function stripAnsi(string: string): string;
							 |