mirror of
				https://github.com/crater-invoice/crater.git
				synced 2025-10-29 12:41:10 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			5 lines
		
	
	
		
			200 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			5 lines
		
	
	
		
			200 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| export default function normalize (str, strict = true) {
 | |
|   return strict
 | |
|     ? String(str).toLowerCase().trim()
 | |
|     : String(str).normalize('NFD').replace(/\p{Diacritic}/gu, '').toLowerCase().trim()
 | |
| } |