Yusuke Komatsu 741a209b27 uint8 for levels há 10 anos atrás
..
README.md 2e62be24db Add bytes format feature há 10 anos atrás
bytes.go 741a209b27 uint8 for levels há 10 anos atrás
bytes_test.go c8e533fc9c Fixed https://github.com/labstack/echo/issues/507 há 10 anos atrás

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