Vishal Rana c5a5d7440d Changed bytes to gytes 10 năm trước cách đây
..
README.md c5a5d7440d Changed bytes to gytes 10 năm trước cách đây
gytes.go c5a5d7440d Changed bytes to gytes 10 năm trước cách đây
gytes_test.go c5a5d7440d Changed bytes to gytes 10 năm trước cách đây

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