jack e1a2621c78 update | 2 years ago | |
---|---|---|
.. | ||
index.js | 2 years ago | |
license | 2 years ago | |
package.json | 2 years ago | |
readme.md | 2 years ago |
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