Files

11 lines
158 B
Go
Raw Permalink Normal View History

2019-04-22 20:46:32 +08:00
// +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)
}