-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.d.ts
173 lines (134 loc) · 3.78 KB
/
index.d.ts
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
export type Options = {
/**
Include plus sign for positive numbers. If the difference is exactly zero a space character will be prepended instead for better alignment.
@default false
*/
readonly signed?: boolean;
/**
- If `false`: Output won't be localized.
- If `true`: Localize the output using the system/browser locale.
- If `string`: Expects a [BCP 47 language tag](https://en.wikipedia.org/wiki/IETF_language_tag) (For example: `en`, `de`, …)
- If `string[]`: Expects a list of [BCP 47 language tags](https://en.wikipedia.org/wiki/IETF_language_tag) (For example: `en`, `de`, …)
@default false
*/
readonly locale?: boolean | string | readonly string[];
/**
Format the number as [bits](https://en.wikipedia.org/wiki/Bit) instead of [bytes](https://en.wikipedia.org/wiki/Byte). This can be useful when, for example, referring to [bit rate](https://en.wikipedia.org/wiki/Bit_rate).
@default false
@example
```
import neoBytes from 'neo-bytes';
neoBytes(1337, {bits: true});
//=> '1.34 kbit'
```
*/
readonly bits?: boolean;
/**
Format the number using the [Binary Prefix](https://en.wikipedia.org/wiki/Binary_prefix) instead of the [SI Prefix](https://en.wikipedia.org/wiki/SI_prefix). This can be useful for presenting memory amounts. However, this should not be used for presenting file sizes.
@default false
@example
```
import neoBytes from 'neo-bytes';
neoBytes(1000, {binary: true});
//=> '1000 bit'
neoBytes(1024, {binary: true});
//=> '1 kiB'
```
*/
readonly binary?: boolean;
/**
The minimum number of fraction digits to display.
If neither `minimumFractionDigits` or `maximumFractionDigits` are set, the default behavior is to round to 3 significant digits.
@default undefined
@example
```
import neoBytes from 'neo-bytes';
// Show the number with at least 3 fractional digits
neoBytes(1900, {minimumFractionDigits: 3});
//=> '1.900 kB'
neoBytes(1900);
//=> '1.9 kB'
```
*/
readonly minimumFractionDigits?: number;
/**
The maximum number of fraction digits to display.
If neither `minimumFractionDigits` or `maximumFractionDigits` are set, the default behavior is to round to 3 significant digits.
@default undefined
@example
```
import neoBytes from 'neo-bytes';
// Show the number with at most 1 fractional digit
neoBytes(1920, {maximumFractionDigits: 1});
//=> '1.9 kB'
neoBytes(1920);
//=> '1.92 kB'
```
*/
readonly maximumFractionDigits?: number;
/**
Put a space between the number and unit.
@default true
@example
```
import neoBytes from 'neo-bytes';
neoBytes(1920, {space: false});
//=> '1.9kB'
neoBytes(1920);
//=> '1.92 kB'
```
*/
readonly space?: boolean;
/**
* Remove 'i' from the binary enabled formatted output.
* @default false
* @example
* ```
* import neoBytes from 'neo-bytes';
* neoBytes(1024, {binary: true, noi: true});
* //=> '1 kB'
* ```
*/
readonly noi?: boolean;
/**
* Remove 'it' from the bits enabled formatted output.
* @default false
* @example
* ```
* import neoBytes from 'neo-bytes';
* neoBytes(1337, {bits: true, noit: true});
* //=> '1.34 kb'
* ```
*/
readonly noit?: boolean;
/**
* Suffix to append to the formatted number.
* @default ''
* @example
* ```
* import neoBytes from 'neo-bytes';
* neoBytes(1337, {suffix: '/s'});
* //=> '1.34 kB/s'
* ```
*/
readonly suffix?: string;
};
/**
Convert bytes to a human readable string: `1337` → `1.34 kB`.
@param number - The number to format.
@example
```
import neoBytes from 'neo-bytes';
neoBytes(1337);
//=> '1.34 kB'
neoBytes(100);
//=> '100 B'
// Display file size differences
neoBytes(42, {signed: true});
//=> '+42 B'
// Localized output using German locale
neoBytes(1337, {locale: 'de'});
//=> '1,34 kB'
```
*/
export default function neoBytes(number: number, options?: Options): string;