mirror of
https://github.com/rclone/rclone.git
synced 2024-12-27 09:28:58 +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)
|
||
|
}
|