Vishal Rana 48d9dcfdfd Update README.md 10 years ago
..
README.md 48d9dcfdfd Update README.md 10 years ago
bytes.go 80cefd19e2 Bytes package to format bytes :star: 10 years ago
bytes_test.go 80cefd19e2 Bytes package to format bytes :star: 10 years ago

README.md

Bytes

Format bytes to string

Installation


## [Usage](https://github.com/labstack/gommon/blob/master/bytes/bytes_test.go)

### Decimal prefix

```go
fmt.Println(bytes.Format(1323))

1.29 KB

Binary prefix

bytes.BinaryPrefix(true)
fmt.Println(bytes.Format(1323))

1.29 KiB