condense skipWhitespace code
parent
d909b0cf30
commit
5d87439eb3
|
@ -726,17 +726,12 @@ func scanBoolean(buf []byte, i int) (int, []byte, error) {
|
|||
// skipWhitespace returns the end position within buf, starting at i after
|
||||
// scanning over spaces in tags
|
||||
func skipWhitespace(buf []byte, i int) int {
|
||||
for {
|
||||
if i >= len(buf) {
|
||||
return i
|
||||
}
|
||||
|
||||
if buf[i] == ' ' || buf[i] == '\t' || buf[i] == 0 {
|
||||
i += 1
|
||||
continue
|
||||
}
|
||||
for i < len(buf) {
|
||||
if buf[i] != ' ' && buf[i] != '\t' && buf[i] != 0 {
|
||||
break
|
||||
}
|
||||
i++
|
||||
}
|
||||
return i
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue