Vishal Rana 61c877fb75 Go fmt 10 năm trước cách đây
..
README.md 2843abeff0 Updated readme 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 61c877fb75 Go fmt 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

New intance

Decimal prefix

g := New()
fmt.Println(g.Format(13231323))

13.23 MB

Binary prefix

g := New()
g.BinaryPrefix(true)
fmt.Println(g.Format(13231323))

12.62 MiB