code-problems/problems/byte-format at master · blakeembrey/code-problems · GitHub
Skip to content
This repository was archived by the owner on Dec 12, 2023. It is now read-only.

Latest commit

 

History

History

Folders and files

README.md

Byte String

Convert a number to a string that represents a rounded size in bytes.

Example

f(156833213) // => "149.57 MB"
f(8101)      // => "7.91 KB"
f(12331, 3)  // => "12.042 KB"

Source

By Riga.