Vishal Rana 32546fb175 Refactored function name 10 years ago
..
README.md 32546fb175 Refactored function name 10 years ago
gytes.go f9401b795b Refactored function name 10 years ago
gytes_test.go f9401b795b Refactored function name 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.SetBinaryPrefix(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.SetBinaryPrefix(true)
fmt.Println(g.Format(13231323))

12.62 MiB