mirror of
https://github.com/go-gitea/gitea.git
synced 2025-12-15 21:45:35 +08:00
|
…
|
||
|---|---|---|
| .. | ||
| .travis.yml | ||
| bom.go | ||
| LICENSE | ||
| 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))