mirror of
				https://scm.univ-tours.fr/22107988t/rappaurio-sae501_502.git
				synced 2025-11-04 02:35:23 +01: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;
 |