mirror of
https://github.com/rocky-linux/peridot.git
synced 2024-11-05 14:31:22 +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)
|
||
|
}
|