blob: bb94861cd92587fdbc318abbe2a62e4688756225 (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
# pretty-bytes [](https://travis-ci.org/sindresorhus/pretty-bytes)
> 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.](http://pacoup.com/2009/05/26/kb-kb-kib-whats-up-with-that/)*
## Install
```
$ npm install --save pretty-bytes
```
```
$ bower install --save pretty-bytes
```
```
$ component install sindresorhus/pretty-bytes
```
## Usage
```js
prettyBytes(1337);
//=> '1.34 kB'
prettyBytes(100);
//=> '100 B'
```
## CLI
```
$ npm install --global pretty-bytes
```
```
$ pretty-bytes --help
Usage
$ pretty-bytes <number>
$ echo <number> | pretty-bytes
Example
$ pretty-bytes 1337
1.34 kB
```
## License
MIT © [Sindre Sorhus](http://sindresorhus.com)
|