feed-to-muc/vendor/github.com/ssor/bom
2020-03-28 13:44:36 +01:00
..
.travis.yml Set up go modules and updated dependencies. 2020-03-28 13:44:36 +01:00
bom.go Vendored external dependencies. 2019-02-20 20:23:48 +01:00
LICENSE Vendored external dependencies. 2019-02-20 20:23:48 +01:00
README.md Vendored external dependencies. 2019-02-20 20:23:48 +01: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))