feed-to-muc/vendor/github.com/ssor/bom
2019-05-31 11:07:56 +02:00
..
bom.go Updated vendor packages. 2019-05-31 11:07:56 +02:00
LICENSE Updated vendor packages. 2019-05-31 11:07:56 +02:00
README.md Updated vendor packages. 2019-05-31 11:07:56 +02:00

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