You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gitea-fork-majority-judgment/vendor/github.com/ssor/bom
6543 30ce3731a1
Vendor Update Go Libs (#13444)
4 years ago
..
.travis.yml Vendor Update Go Libs (#13444) 4 years ago
LICENSE Vendor Update Go Libs (#13444) 4 years ago
README.md Vendor Update Go Libs (#13444) 4 years ago
bom.go Vendor Update Go Libs (#13444) 4 years ago

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))