Vishal Rana c5a5d7440d Changed bytes to gytes 10 years ago
..
README.md c5a5d7440d Changed bytes to gytes 10 years ago
gytes.go c5a5d7440d Changed bytes to gytes 10 years ago
gytes_test.go c5a5d7440d Changed bytes to gytes 10 years ago

README.md

Gytes

Format bytes to string

Installation

go get github.com/labstack/gommon/gytes

Usage

import github.com/labstack/gommon/gytes

Decimal prefix

fmt.Println(gytes.Format(1323))

1.32 KB

Binary prefix

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

1.29 KiB

Above examples operate on global instance of Gytes. To create a new instance

```go