Vishal Rana a1a2f7c066 Color now has New function преди 11 години
..
README.md a1a2f7c066 Color now has New function преди 11 години
gytes.go a1a2f7c066 Color now has New function преди 11 години
gytes_test.go a1a2f7c066 Color now has New function преди 11 години

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 instance

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