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
						
					
					
						
							369 B
						
					
					
				
			
		
		
	
	
							18 lines
						
					
					
						
							369 B
						
					
					
				/**
 | 
						|
Strip [ANSI escape codes](https://en.wikipedia.org/wiki/ANSI_escape_code) from a string.
 | 
						|
 | 
						|
@example
 | 
						|
```
 | 
						|
import stripAnsi = require('strip-ansi');
 | 
						|
 | 
						|
stripAnsi('\u001B[4mUnicorn\u001B[0m');
 | 
						|
//=> 'Unicorn'
 | 
						|
 | 
						|
stripAnsi('\u001B]8;;https://github.com\u0007Click\u001B]8;;\u0007');
 | 
						|
//=> 'Click'
 | 
						|
```
 | 
						|
*/
 | 
						|
declare function stripAnsi(string: string): string;
 | 
						|
 | 
						|
export = stripAnsi;
 |