prabhah 1f43c1e9c3 Fixed error on lowercase multiple parse (#35) hace 6 años
..
README.md 2e62be24db Add bytes format feature hace 9 años
bytes.go 1f43c1e9c3 Fixed error on lowercase multiple parse (#35) hace 6 años
bytes_test.go 1f43c1e9c3 Fixed error on lowercase multiple parse (#35) hace 6 años

README.md

Bytes

  • Format bytes integer to human readable bytes string.
  • Parse human readable bytes string to bytes integer.

Installation

go get github.com/labstack/gommon/bytes

Usage

Format

println(bytes.Format(13231323))

12.62MB

Parse

b, _ = Parse("2M")
println(b)

2097152