8 lines
		
	
	
		
			498 B
		
	
	
	
		
			JavaScript
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			8 lines
		
	
	
		
			498 B
		
	
	
	
		
			JavaScript
		
	
	
		
			Executable File
		
	
	
	
	
| import assertString from './util/assertString';
 | |
| export default function unescape(str) {
 | |
|   assertString(str);
 | |
|   return str.replace(/"/g, '"').replace(/'/g, "'").replace(/</g, '<').replace(/>/g, '>').replace(///g, '/').replace(/\/g, '\\').replace(/`/g, '`').replace(/&/g, '&');
 | |
|   // & replacement has to be the last one to prevent
 | |
|   // bugs with intermediate strings containing escape sequences
 | |
|   // See: https://github.com/validatorjs/validator.js/issues/1827
 | |
| } |