Codebase list golang-github-spkg-bom / d093eddc-17de-420f-a041-13c2ed9974e4/upstream/sid discard_go14.go
d093eddc-17de-420f-a041-13c2ed9974e4/upstream/sid

Tree @d093eddc-17de-420f-a041-13c2ed9974e4/upstream/sid (Download .tar.gz)

discard_go14.go @d093eddc-17de-420f-a041-13c2ed9974e4/upstream/sidraw · history · blame

// +build !go1.5

package bom

import "bufio"

func discardBytes(buf *bufio.Reader, n int) {
	// cannot use the buf.Discard method as it was introduced in Go 1.5
	for i := 0; i < n; i++ {
		buf.ReadByte()
	}
}