mirror of
https://github.com/rclone/rclone.git
synced 2025-03-03 09:51:34 +01: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)
|
||
|
}
|