mirror of
https://github.com/iLoveElysia/openbilibili.git
synced 2026-06-08 05:58:29 -05:00
11 lines
158 B
Go
11 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)
|
||
|
|
}
|