Vishal Rana bfff5bf046 Gytes to Bytes 9 سال پیش
..
README.md bfff5bf046 Gytes to Bytes 9 سال پیش
bytes.go bfff5bf046 Gytes to Bytes 9 سال پیش
bytes_test.go bfff5bf046 Gytes to Bytes 9 سال پیش

README.md

Bytes

Format bytes to string

Installation

go get github.com/labstack/gommon/bytes

Usage

import github.com/labstack/gommon/bytes

Decimal prefix

fmt.Println(bytes.Format(1323))

1.32 KB

Binary prefix

bytes.SetBinaryPrefix(true)
fmt.Println(bytes.Format(1323))

1.29 KiB

New instance

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