An open API service indexing awesome lists of open source software.

https://github.com/ssor/bom

small tools for cleaning bom from byte array or reader
https://github.com/ssor/bom

bom utf8

Last synced: 5 months ago
JSON representation

small tools for cleaning bom from byte array or reader

Awesome Lists containing this project

README

          

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

```