mirror of
https://github.com/iLoveElysia/openbilibili.git
synced 2026-03-14 05:46:26 -05:00
23 lines
305 B
Markdown
23 lines
305 B
Markdown
# 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))
|
|
|
|
``` |