mirror of
				https://github.com/optim-enterprises-bv/kubernetes.git
				synced 2025-11-04 04:08:16 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			9 lines
		
	
	
		
			393 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			393 B
		
	
	
	
		
			Go
		
	
	
	
	
	
// Copyright (c) 2017, A. Stoewer <adrian.stoewer@rz.ifi.lmu.de>
 | 
						|
// All rights reserved.
 | 
						|
 | 
						|
// Package strcase converts between different kinds of naming formats such as camel case
 | 
						|
// (CamelCase), snake case (snake_case) or kebab case (kebab-case). The package is designed
 | 
						|
// to work only with strings consisting of standard ASCII letters. Unicode is currently not
 | 
						|
// supported.
 | 
						|
package strcase
 |