vmail/vendor/github.com/labstack/gommon/bytes
2020-07-08 22:41:48 +02:00
..
bytes.go added routes 2020-07-08 22:41:48 +02:00
README.md added routes 2020-07-08 22:41:48 +02:00

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