|
|
%!s(int64=3) %!d(string=hai) anos | |
|---|---|---|
| .. | ||
| index.js | %!s(int64=3) %!d(string=hai) anos | |
| license | %!s(int64=3) %!d(string=hai) anos | |
| package.json | %!s(int64=3) %!d(string=hai) anos | |
| readme.md | %!s(int64=3) %!d(string=hai) anos | |
Convert bytes to a human readable string:
1337→1.34 kB
Useful for displaying file sizes for humans.
-
Note that it uses base-10 (eg. kilobyte).
Read about the difference between kilobyte and kibibyte.
$ npm install --save pretty-bytes
const prettyBytes = require('pretty-bytes');
prettyBytes(1337);
//=> '1.34 kB'
prettyBytes(100);
//=> '100 B'
MIT © Sindre Sorhus