mirror of
				https://github.com/mastermindzh/rickvanlieshout.com
				synced 2025-10-31 08:40:27 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			197 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			197 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| const toKebabCase = (str: string = ""): string =>
 | |
|   str
 | |
|     .toLowerCase()
 | |
|     .replace(/[^\w\s]/gi, "")
 | |
|     .split(" ")
 | |
|     .join("-")
 | |
|     .split("_")
 | |
|     .join("-");
 | |
| 
 | |
| export default toKebabCase;
 |