bilibili-backup/vendor/github.com/ssor/bom
root beccf3fe43 init 2019-04-22 02:59:20 +00:00
..
BUILD.bazel init 2019-04-22 02:59:20 +00:00
LICENSE init 2019-04-22 02:59:20 +00:00
README.md init 2019-04-22 02:59:20 +00:00
bom.go init 2019-04-22 02:59:20 +00:00

README.md

bom

small tools for cleaning bom from byte array or reader

Installation

$ go get github.com/ssor/bom

How to Use

	bs := []byte{bom0, bom1, bom2, 0x11}
	result := CleanBom(bs)
	bs := []byte{bom0, bom1, bom2, 0x11}
	result := NewReaderWithoutBom(bytes.NewReader(bs))