Codebase list golang-github-ssor-bom / 3c524b9d-1483-4f2d-9dc5-d598f4c92d4e/upstream/0.0_git20170718.2.6386211
3c524b9d-1483-4f2d-9dc5-d598f4c92d4e/upstream/0.0_git20170718.2.6386211

Tree @3c524b9d-1483-4f2d-9dc5-d598f4c92d4e/upstream/0.0_git20170718.2.6386211 (Download .tar.gz)

# bom
small tools for cleaning bom from byte array or reader


## Installation

```sh
$ 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))

```