mirror of
				https://github.com/k3s-io/kubernetes.git
				synced 2025-11-03 23:40:03 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			173 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			173 B
		
	
	
	
		
			Go
		
	
	
	
	
	
package ini
 | 
						|
 | 
						|
var commaRunes = []rune(",")
 | 
						|
 | 
						|
func isComma(b rune) bool {
 | 
						|
	return b == ','
 | 
						|
}
 | 
						|
 | 
						|
func newCommaToken() Token {
 | 
						|
	return newToken(TokenComma, commaRunes, NoneType)
 | 
						|
}
 |