(b []byte)
| 35 | } |
| 36 | |
| 37 | func skipSpaces(b []byte) []byte { |
| 38 | if len(b) > 0 && b[0] <= 0x20 { |
| 39 | b, _ = skipSpacesN(b) |
| 40 | } |
| 41 | return b |
| 42 | } |
| 43 | |
| 44 | func skipSpacesN(b []byte) ([]byte, int) { |
| 45 | for i := range b { |
no test coverage detected
searching dependent graphs…