Skip to content

Latest commit

 

History

History
15 lines (10 loc) · 245 Bytes

File metadata and controls

15 lines (10 loc) · 245 Bytes

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.