lazydocker/vendor/github.com/spkg/bom/discard_go15.go
2019-05-12 10:32:02 +10:00

10 lines
158 B
Go

// +build go1.5
package bom
import "bufio"
func discardBytes(buf *bufio.Reader, n int) {
// the Discard method was introduced in Go 1.5
buf.Discard(n)
}