@procore/globalization-toolkit 1.14.0 → 1.15.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +324 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +2 -1
- package/dist/index.js.map +1 -1
- package/dist/numbers/CurrencyFormatter.d.ts +3 -1
- package/dist/numbers/CurrencyFormatter.js +13 -1
- package/dist/numbers/CurrencyFormatter.js.map +1 -1
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -6,12 +6,335 @@ i18n formatting library
|
|
|
6
6
|
[](https://circleci.com/gh/procore/globalization-toolkit/tree/main)
|
|
7
7
|
[](https://www.npmjs.com/package/@procore/globalization-toolkit)
|
|
8
8
|
|
|
9
|
-
|
|
9
|
+
Before implementing the Globalization Toolkit (GTK), please review the [Globalization Toolkit Adoption Diagram](https://lucid.app/lucidchart/47c65380-9d87-409a-a15e-77c668e4c474/edit?invitationId=inv_abb5b5f8-3d6f-499f-920d-6dc6b7c9734c&page=0_0#) to determine the best implementation strategy for you. Continue reading for instructions on direct usage of the GTK.
|
|
10
|
+
|
|
11
|
+
## [Engineering Documentation](https://procore.github.io/globalization-toolkit/)
|
|
12
|
+
The engineering documentation contains technical documentation for the GTK repo. It details classes, types, interfaces, and features. Continue reading for install and usage instructions.
|
|
13
|
+
Further reading on the GTK:
|
|
14
|
+
- [GTK Adoption Training Presentation](https://docs.google.com/presentation/d/1FtB2DR5qroKgGcxxWsu5Ac9QHA01I7WM75FUeB67izE/edit?usp=sharing)
|
|
15
|
+
- [GTK SDR](https://github.com/procore/system-design-records/blob/main/lifecycle/2-pilot/internationalization/0002-globalization-toolkit.md)
|
|
16
|
+
- [GTK FAQ]() - Coming soon!
|
|
10
17
|
|
|
18
|
+
## Install
|
|
19
|
+
NPM
|
|
11
20
|
```sh
|
|
12
21
|
$ npm i --save @procore/globalization-toolkit
|
|
13
22
|
```
|
|
23
|
+
YARN
|
|
24
|
+
```sh
|
|
25
|
+
$ yarn add @procore/globalization-toolkit
|
|
26
|
+
```
|
|
27
|
+
## Usage
|
|
28
|
+
The GTK has 3 available classes: NumberFormatter, DateTimeFormatter, CurrencyFormatter. The structure of the GTK Library allows for instantiation of a formatting class with defined options. The instantiated class gives access to related functions. In addition, the GTK makes the class functions available as stand-alone functions. Below are examples of GTK usage with class formatter and with stand-alone functions.
|
|
29
|
+
|
|
30
|
+
### A Note on Locales
|
|
31
|
+
The GTK supports industry standard locale codes. The GTK does NOT support [Procore Custom Locales](https://procoretech.atlassian.net/wiki/spaces/PLATFORM/pages/1039111578/Levels+of+Support+for+Locales+Product+Coverage#Custom-Locales). When implementing the GTK, please sanitize the locale to follow industry standard of 'region-language' like 'en-US'.
|
|
32
|
+
|
|
33
|
+
### NumberFormatter Class
|
|
34
|
+
The GTK `NumberFormatter` class has the ability to format numbers for a given locale. The [NumberFormatter](https://procore.github.io/globalization-toolkit/classes/NumberFormatter) class is instantiated with [NumberOptions](https://procore.github.io/globalization-toolkit/interfaces/NumberOptions.html) and has 4 available functions:
|
|
35
|
+
- `formatNumber(value: number)`,
|
|
36
|
+
- `formatNumberToParts(value: number)`,
|
|
37
|
+
- `parseNumber(value: string)`, and
|
|
38
|
+
- `getNumberSeparators(locale: string)`.
|
|
39
|
+
|
|
40
|
+
The [NumberOptions](https://procore.github.io/globalization-toolkit/interfaces/CurrencyOptions.html) are summarized below:
|
|
41
|
+
- `locale`: string
|
|
42
|
+
- `maximumFractionDigits?`: number
|
|
43
|
+
- `minimumFractionDigits?`: number
|
|
44
|
+
- `percent?`: 'standard', 'decimal'
|
|
45
|
+
|
|
46
|
+
Below code blocks display usage of the NumberFormatter class and available functions.
|
|
47
|
+
#### [formatNumber()](https://procore.github.io/globalization-toolkit/classes/NumberFormatter.html#formatNumber) & [formatNumberToParts()](https://procore.github.io/globalization-toolkit/classes/NumberFormatter.html#formatNumberToParts)
|
|
48
|
+
```ts
|
|
49
|
+
import { NumberFormatter } from '@procore/globalization-toolkit';
|
|
50
|
+
|
|
51
|
+
const value = 1234;
|
|
52
|
+
const numberOptions = { locale: "en-US", minimumFractionDigits: 3 };
|
|
53
|
+
const formatter = new NumberFormatter(numberOptions);
|
|
54
|
+
|
|
55
|
+
console.log(formatter.formatNumber(value)) // expected output: '1,234.000'
|
|
56
|
+
|
|
57
|
+
console.log(formatter.formatNumberToParts(value))
|
|
58
|
+
/**
|
|
59
|
+
* expected output is an array of objects representing the parts of the formatted number:
|
|
60
|
+
* [
|
|
61
|
+
* { type: "integer", value: "1", },
|
|
62
|
+
* { type: "group", value: ",", },
|
|
63
|
+
* { type: "integer", value: "234", },
|
|
64
|
+
* { type: "decimal", value: ".", },
|
|
65
|
+
* { type: "fraction", value: "000", },
|
|
66
|
+
* ];
|
|
67
|
+
*/
|
|
68
|
+
```
|
|
69
|
+
|
|
70
|
+
#### [parseNumber()](https://procore.github.io/globalization-toolkit/classes/NumberFormatter.html#parseNumber)
|
|
71
|
+
```ts
|
|
72
|
+
import { NumberFormatter } from '@procore/globalization-toolkit';
|
|
73
|
+
|
|
74
|
+
const value = "123 456 789,12";
|
|
75
|
+
const numberOptions = { locale: "fr-FR" };
|
|
76
|
+
const formatter = new NumberFormatter(numberOptions);
|
|
77
|
+
|
|
78
|
+
console.log(formatter.parseNumber(value)); // expected output: '123456789.12'
|
|
79
|
+
|
|
80
|
+
console.log(formatter.parseNumber("Abcd")); // expected output: NaN
|
|
81
|
+
```
|
|
82
|
+
#### [getSeparators()](https://procore.github.io/globalization-toolkit/classes/NumberFormatter.html#getNumberSeparators)
|
|
83
|
+
|
|
84
|
+
```ts
|
|
85
|
+
import { NumberFormatter } from '@procore/globalization-toolkit';
|
|
86
|
+
|
|
87
|
+
const germanNumberOptions = { locale: "de-DE" };
|
|
88
|
+
const germanFormatter = new NumberFormatter(germanNumberOptions);
|
|
89
|
+
|
|
90
|
+
console.log(germanFormatter.getSeparators()); // expected output: { decimal: ",", group: "." }
|
|
91
|
+
|
|
92
|
+
const usNumberOptions = { locale: 'en-US' };
|
|
93
|
+
const formatter = new NumberFormatter(usNumberOptions);
|
|
94
|
+
|
|
95
|
+
console.log(formatter.getSeparators()); // expected output: { decimal: ".", group: "," }
|
|
96
|
+
```
|
|
97
|
+
### NumberFormatter Functions
|
|
98
|
+
The functions used on the NumberFormatter class are also available as stand alone functions. Read more information about each function in the GTK Documentation.
|
|
99
|
+
- [formatNumber](https://procore.github.io/globalization-toolkit/functions/formatNumber.html)
|
|
100
|
+
- [formatNumberToParts](https://procore.github.io/globalization-toolkit/functions/formatNumberToParts.html)
|
|
101
|
+
- [parseNumber](https://procore.github.io/globalization-toolkit/functions/parseNumber.html)
|
|
102
|
+
- [getNumberSeparators](https://procore.github.io/globalization-toolkit/functions/getNumberSeparators.html)
|
|
103
|
+
|
|
104
|
+
The example below shows usage of the stand alone function: `formatNumber()`.
|
|
105
|
+
```ts
|
|
106
|
+
import { formatNumber } from '@procore/globalization-toolkit';
|
|
107
|
+
|
|
108
|
+
const value = 1234;
|
|
109
|
+
const numberOptions = { locale: "en-US", minimumFractionDigits: 3 };
|
|
110
|
+
|
|
111
|
+
console.log(formatNumber(value, numberOptions)) // expected output: '1,234.000'
|
|
112
|
+
```
|
|
113
|
+
### CurrencyFormatter class
|
|
114
|
+
The GTK CurrencyFormatter class has the ability to format a number with given options. The [CurrencyFormatter](https://procore.github.io/globalization-toolkit/classes/CurrencyFormatter.html) class is instantiated with [CurrencyOptions](https://procore.github.io/globalization-toolkit/interfaces/CurrencyOptions.html).
|
|
115
|
+
The CurrencyFormatter has 4 available functions:
|
|
116
|
+
- `formatCurrency(value: number)`,
|
|
117
|
+
- `formatCurrencyToParts(value: number)`
|
|
118
|
+
- `parseCurrency(value: string)`
|
|
119
|
+
- `getCurrencySeparators()`
|
|
120
|
+
|
|
121
|
+
The [CurrencyOptions](https://procore.github.io/globalization-toolkit/interfaces/CurrencyOptions.html) are summarized below:
|
|
122
|
+
- `currencyIsoCode`: string ([acceptable ISO codes](https://github.com/formatjs/formatjs/blob/main/packages/intl-enumerator/src/currencies.generated.ts))
|
|
123
|
+
- `locale`: string
|
|
124
|
+
- `currencySign?`: 'accounting', 'standard'
|
|
125
|
+
- `currencyDisplay?`: 'code', 'name', 'narrowSymbol', 'symbol'
|
|
126
|
+
- `maximumFractionDigits?`: number
|
|
127
|
+
- `minimumFractionDigits?`: number
|
|
128
|
+
|
|
129
|
+
Below code blocks display usage of the CurrencyFormatter class and available functions.
|
|
130
|
+
|
|
131
|
+
[formatCurrency(value: number)](https://procore.github.io/globalization-toolkit/classes/CurrencyFormatter.html#formatCurrency)
|
|
132
|
+
```ts
|
|
133
|
+
const value = 1234;
|
|
134
|
+
const currencyOptions = { locale: "en-US", currencyIsoCode: "USD" };
|
|
135
|
+
const formatter = new CurrencyFormatter(currencyOptions);
|
|
136
|
+
|
|
137
|
+
console.log(formatter.formatCurrency(value)) // expected outcome: '$1,234.00'
|
|
138
|
+
```
|
|
139
|
+
Usage with currencyDisplay option
|
|
140
|
+
```ts
|
|
141
|
+
import { CurrencyFormatter } from '@procore/globalization-toolkit';
|
|
142
|
+
|
|
143
|
+
const value = 1234.567;
|
|
144
|
+
const currencyOptions: CurrencyOptions = {
|
|
145
|
+
locale: "de-DE",
|
|
146
|
+
currencyIsoCode: "USD",
|
|
147
|
+
currencyDisplay: "name",
|
|
148
|
+
};
|
|
149
|
+
const formatter = new CurrencyFormatter(currencyOptions);
|
|
150
|
+
|
|
151
|
+
console.log(formatter.formatCurrency(value)); // expected outcome: '1.234,57 US-Dollar'
|
|
152
|
+
```
|
|
153
|
+
Usage with minimumFractionDigits and currencyDisplay
|
|
154
|
+
```ts
|
|
155
|
+
const value = 1234.567;
|
|
156
|
+
const currencyOptions = {
|
|
157
|
+
locale: "ja-JP",
|
|
158
|
+
minimumFractionDigits: 2,
|
|
159
|
+
currencyIsoCode: "JPY",
|
|
160
|
+
};
|
|
161
|
+
const formatter = new CurrencyFormatter(currencyOptions);
|
|
162
|
+
|
|
163
|
+
console.log(formatter.formatCurrency(value)); // expected outcome: '¥1,234.57'
|
|
164
|
+
```
|
|
165
|
+
[formatCurrencyToParts()](https://procore.github.io/globalization-toolkit/classes/CurrencyFormatter.html#formatCurrencyToParts)
|
|
166
|
+
```ts
|
|
167
|
+
import { CurrencyFormatter } from '@procore/globalization-toolkit';
|
|
168
|
+
|
|
169
|
+
const value = -1234.56;
|
|
170
|
+
const currencyOptions: CurrencyOptions = {
|
|
171
|
+
locale: "en-US",
|
|
172
|
+
currencyIsoCode: "CAD",
|
|
173
|
+
currencySign: "accounting",
|
|
174
|
+
};
|
|
175
|
+
const formatter = new CurrencyFormatter(currencyOptions);
|
|
176
|
+
console.log(formatter.formatCurrencyToParts(value));
|
|
177
|
+
/** expected output:
|
|
178
|
+
* [
|
|
179
|
+
* { type: "literal", value: "(", },
|
|
180
|
+
* { type: "currency", value: "CA$", },
|
|
181
|
+
* { type: "integer", value: "1", },
|
|
182
|
+
* { type: "group", value: ",", },
|
|
183
|
+
* { type: "integer", value: "234", },
|
|
184
|
+
* { type: "decimal", value: ".", },
|
|
185
|
+
* { type: "fraction", value: "56", },
|
|
186
|
+
* { type: "literal", value: ")", },
|
|
187
|
+
* ]
|
|
188
|
+
**/
|
|
189
|
+
```
|
|
190
|
+
[parseCurrency(value: string)](https://procore.github.io/globalization-toolkit/classes/CurrencyFormatter.html#parseCurrency)
|
|
191
|
+
```ts
|
|
192
|
+
const value = "(1 234 567,56 €)";
|
|
193
|
+
const currencyOptions: CurrencyOptions = {
|
|
194
|
+
locale: "fr-FR",
|
|
195
|
+
currencyIsoCode: "EUR",
|
|
196
|
+
currencySign: "accounting",
|
|
197
|
+
};
|
|
198
|
+
const formatter = new CurrencyFormatter(currencyOptions);
|
|
199
|
+
|
|
200
|
+
console.log(formatter.parseCurrency(value)); // expected outcome: -1234567.56
|
|
201
|
+
```
|
|
202
|
+
|
|
203
|
+
[getCurrencySeparators](https://procore.github.io/globalization-toolkit/classes/CurrencyFormatter.html#getCurrencySeparators)
|
|
204
|
+
```ts
|
|
205
|
+
const currencyOptions = { locale: "de-DE", currencyIsoCode: "EUR" };
|
|
206
|
+
const formatter = new CurrencyFormatter(currencyOptions);
|
|
207
|
+
|
|
208
|
+
console.log(formatter.getCurrencySeparators()) // expected outcome: { decimal: ",", group: "." }
|
|
209
|
+
```
|
|
210
|
+
### CurrencyFormatter Functions
|
|
211
|
+
The functions used on the CurrencyFormatter class are also available as stand alone functions. Read more information about each function in the GTK Documentation.
|
|
212
|
+
- [formatCurrency](https://procore.github.io/globalization-toolkit/functions/formatCurrency.html)
|
|
213
|
+
- [formatCurrencyToParts](https://procore.github.io/globalization-toolkit/functions/formatCurrencyToParts.html)
|
|
214
|
+
- [parseCurrency](https://procore.github.io/globalization-toolkit/functions/parseCurrency.html)
|
|
215
|
+
- [getCurrencySeparators](https://procore.github.io/globalization-toolkit/functions/getCurrencySeparators.html)
|
|
216
|
+
|
|
217
|
+
The example below shows usage of the stand alone function: `formatCurrency(value, options)`.
|
|
218
|
+
```ts
|
|
219
|
+
import { formatCurrency, getCurrencySeparators } from '@procore/globalization-toolkit';
|
|
220
|
+
|
|
221
|
+
const value = 1234;
|
|
222
|
+
const currencyOptions = { locale: 'en-US', currencyIsoCode: 'USD' };
|
|
223
|
+
|
|
224
|
+
console.log(formatCurrency(value, currencyOptions)) // expected output: '$1,234.00'
|
|
225
|
+
|
|
226
|
+
console.log(getCurrencySeparators(currencyOptions)) // expected output: { decimal: ".", group: "," }
|
|
227
|
+
```
|
|
228
|
+
|
|
229
|
+
### DateTimeFormatter
|
|
230
|
+
The GTK DateTimeFormatter class has the ability to format date and time for the correct timezone. The [DateTimeFormatter](https://procore.github.io/globalization-toolkit/classes/DateTimeFormatter.html) class is instantiated with [DateTimeOptions](https://procore.github.io/globalization-toolkit/types/DateTimeOptions.html).
|
|
231
|
+
The DateTimeFormatter has 3 available functions:
|
|
232
|
+
- `formatDateTime(value: Date)`,
|
|
233
|
+
- `formatDateTimeToParts(value: Date)`, and
|
|
234
|
+
- `getStartDayOfTheWeek()`
|
|
235
|
+
|
|
236
|
+
The DateTimeOptions can be used in two ways, but the two options cannot be combined. This follows the pattern of Intl.DateTimeFormat.
|
|
237
|
+
1. Style Options:
|
|
238
|
+
- timeStyle: 'short', 'medium', 'long', 'full'
|
|
239
|
+
- dateStyle: 'short', 'medium', 'long', 'full'
|
|
240
|
+
2. Component Options
|
|
241
|
+
- weekday: 'long', 'short', 'narrow'
|
|
242
|
+
- year: 'numeric', '2-digit'
|
|
243
|
+
- month: numeric', '2-digit', 'long', 'short', 'narrow'
|
|
244
|
+
- day: 'numeric', '2-digit'
|
|
245
|
+
- hour: 'numeric', '2-digit'
|
|
246
|
+
- minute: 'numeric', '2-digit'
|
|
247
|
+
- second: 'numeric', '2-digit'
|
|
248
|
+
|
|
249
|
+
Below code blocks display usage of the DateTimeFormatter class and available functions.
|
|
250
|
+
[formatDateTime(value: Date)](https://procore.github.io/globalization-toolkit/classes/DateTimeFormatter.html#formatDateTime)
|
|
251
|
+
SIMPLE OPTIONS
|
|
252
|
+
```ts
|
|
253
|
+
import { DateTimeFormatter } from '@procore/globalization-toolkit';
|
|
254
|
+
|
|
255
|
+
const value = new Date(1445419756738);
|
|
256
|
+
const dateTimeOptions = {
|
|
257
|
+
locale: 'en-US',
|
|
258
|
+
timeZone: 'UTC',
|
|
259
|
+
dateStyle: 'full',
|
|
260
|
+
timeStyle: 'long',
|
|
261
|
+
};
|
|
262
|
+
const formatter = new DateTimeFormatter(dateTimeOptions);
|
|
263
|
+
|
|
264
|
+
console.log(formatter.formatDateTime(value))
|
|
265
|
+
// expected output: Wednesday, October 21, 2015 at 9:29:16 AM UTC
|
|
266
|
+
```
|
|
267
|
+
COMPLEX OPTIONS
|
|
268
|
+
```js
|
|
269
|
+
const value = new Date(Date.UTC(1885, 8, 1, 12, 0, 16, 738));
|
|
270
|
+
const dateTimeOptions = {
|
|
271
|
+
locale: 'en-US',
|
|
272
|
+
timeZone: 'UTC',
|
|
273
|
+
weekday: 'long',
|
|
274
|
+
year: 'numeric',
|
|
275
|
+
month: '2-digit',
|
|
276
|
+
day: '2-digit',
|
|
277
|
+
hour: 'numeric',
|
|
278
|
+
minute: '2-digit',
|
|
279
|
+
second: '2-digit',
|
|
280
|
+
};
|
|
281
|
+
const formatter = new DateTimeFormatter(dateTimeOptions);
|
|
282
|
+
|
|
283
|
+
console.log(formatter.formatDateTime(value))
|
|
284
|
+
// expected output: "Tuesday, 09/01/1885, 12:00:16 PM";
|
|
285
|
+
```
|
|
286
|
+
[formatDateTimeToParts(value: Date)](https://procore.github.io/globalization-toolkit/classes/DateTimeFormatter.html#formatDateTimeToParts)
|
|
287
|
+
|
|
288
|
+
```ts
|
|
289
|
+
const value = new Date(Date.UTC(1955, 10, 5, 6, 0, 16, 738));
|
|
290
|
+
const dateTimeOptions = {
|
|
291
|
+
locale: "en-GB",
|
|
292
|
+
timeZone: "UTC",
|
|
293
|
+
dateStyle: DateStyle.FULL,
|
|
294
|
+
timeStyle: TimeStyle.SHORT,
|
|
295
|
+
};
|
|
296
|
+
const formatter = new DateTimeFormatter(dateTimeOptions);
|
|
297
|
+
|
|
298
|
+
console.log(formatter.formatDateTime(value))
|
|
299
|
+
/** expected output:
|
|
300
|
+
* [ { type: "weekday", value: "Saturday", },
|
|
301
|
+
* { type: "literal", value: ", ", },
|
|
302
|
+
* { type: "day", value: "5", },
|
|
303
|
+
* { type: "literal", value: " ", },
|
|
304
|
+
* { type: "month", value: "November", },
|
|
305
|
+
* { type: "literal", value: " ", },
|
|
306
|
+
* { type: "year", value: "1955", },
|
|
307
|
+
* { type: "literal", value: " at ",},
|
|
308
|
+
* { type: "hour", value: "06",},
|
|
309
|
+
* { type: "literal", value: ":",},
|
|
310
|
+
* { type: "minute", value: "00",}, ];
|
|
311
|
+
**/
|
|
312
|
+
```
|
|
313
|
+
[getStartDayOfTheWeek()](https://procore.github.io/globalization-toolkit/classes/DateTimeFormatter.html#getStartDayOfTheWeek)
|
|
314
|
+
This function returns an index value representing the start day of the week on the locale's calendar { Sunday: 0, Monday: 1 ...etc }
|
|
315
|
+
|
|
316
|
+
```ts
|
|
317
|
+
const dateTimeOptions = { locale: 'en-US' };
|
|
318
|
+
const formatter = new DateTimeFormatter(dateTimeOptions);
|
|
14
319
|
|
|
320
|
+
console.log(formatter.startDayOfTheWeek()); // expected output: 0
|
|
321
|
+
```
|
|
322
|
+
### DateTimeFormatter Functions
|
|
323
|
+
The functions used on the NumberFormatter class are also available as stand alone functions. Read more information about each function in the GTK Documentation.
|
|
324
|
+
- [formatDateTime()](https://procore.github.io/globalization-toolkit/functions/formatDateTime.html)
|
|
325
|
+
- [formaDateTimeToParts()](https://procore.github.io/globalization-toolkit/functions/formatDateTimeToParts.html)
|
|
326
|
+
- [getStartDayOfTheWeek(locale: string)](https://procore.github.io/globalization-toolkit/functions/getStartDayOfTheWeek.html)
|
|
327
|
+
|
|
328
|
+
The example below shows usage of the stand alone function: `formatDateTime()`.
|
|
329
|
+
```ts
|
|
330
|
+
import { formatDateTime } from '@procore/globalization-toolkit';
|
|
331
|
+
|
|
332
|
+
const value = new Date(Date.UTC(1955, 10, 5, 6, 0, 16, 738));
|
|
333
|
+
const dateTimeOptions = { locale: "en-US", timeZone: "UTC" };
|
|
334
|
+
|
|
335
|
+
console.log(formatDateTime(value, dateTimeOptions)) // expected output: 11/5/1955
|
|
336
|
+
```
|
|
337
|
+
____
|
|
15
338
|
# Developing
|
|
16
339
|
|
|
17
340
|
Install dependencies:
|
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export { NumberFormatter, formatNumber, formatNumberToParts, parseNumber, getNumberSeparators, } from "./numbers/NumberFormatter";
|
|
2
|
-
export { CurrencyFormatter, formatCurrency, formatCurrencyToParts, parseCurrency, } from "./numbers/CurrencyFormatter";
|
|
2
|
+
export { CurrencyFormatter, formatCurrency, formatCurrencyToParts, parseCurrency, getCurrencySeparators, } from "./numbers/CurrencyFormatter";
|
|
3
3
|
export { DateTimeFormatter, formatDateTime, formatDateTimeToParts, getStartDayOfTheWeek, } from "./dateTimes/DateTimeFormatter";
|
|
4
4
|
export type { Percent, NumberOptions, NumberFormatPart, Separators, } from "./numbers/Number.types";
|
|
5
5
|
export type { CurrencyDisplay, CurrencySign, CurrencyOptions, } from "./numbers/Currency.types";
|
package/dist/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.getStartDayOfTheWeek = exports.formatDateTimeToParts = exports.formatDateTime = exports.DateTimeFormatter = exports.parseCurrency = exports.formatCurrencyToParts = exports.formatCurrency = exports.CurrencyFormatter = exports.getNumberSeparators = exports.parseNumber = exports.formatNumberToParts = exports.formatNumber = exports.NumberFormatter = void 0;
|
|
3
|
+
exports.getStartDayOfTheWeek = exports.formatDateTimeToParts = exports.formatDateTime = exports.DateTimeFormatter = exports.getCurrencySeparators = exports.parseCurrency = exports.formatCurrencyToParts = exports.formatCurrency = exports.CurrencyFormatter = exports.getNumberSeparators = exports.parseNumber = exports.formatNumberToParts = exports.formatNumber = exports.NumberFormatter = void 0;
|
|
4
4
|
var NumberFormatter_1 = require("./numbers/NumberFormatter");
|
|
5
5
|
Object.defineProperty(exports, "NumberFormatter", { enumerable: true, get: function () { return NumberFormatter_1.NumberFormatter; } });
|
|
6
6
|
Object.defineProperty(exports, "formatNumber", { enumerable: true, get: function () { return NumberFormatter_1.formatNumber; } });
|
|
@@ -12,6 +12,7 @@ Object.defineProperty(exports, "CurrencyFormatter", { enumerable: true, get: fun
|
|
|
12
12
|
Object.defineProperty(exports, "formatCurrency", { enumerable: true, get: function () { return CurrencyFormatter_1.formatCurrency; } });
|
|
13
13
|
Object.defineProperty(exports, "formatCurrencyToParts", { enumerable: true, get: function () { return CurrencyFormatter_1.formatCurrencyToParts; } });
|
|
14
14
|
Object.defineProperty(exports, "parseCurrency", { enumerable: true, get: function () { return CurrencyFormatter_1.parseCurrency; } });
|
|
15
|
+
Object.defineProperty(exports, "getCurrencySeparators", { enumerable: true, get: function () { return CurrencyFormatter_1.getCurrencySeparators; } });
|
|
15
16
|
var DateTimeFormatter_1 = require("./dateTimes/DateTimeFormatter");
|
|
16
17
|
Object.defineProperty(exports, "DateTimeFormatter", { enumerable: true, get: function () { return DateTimeFormatter_1.DateTimeFormatter; } });
|
|
17
18
|
Object.defineProperty(exports, "formatDateTime", { enumerable: true, get: function () { return DateTimeFormatter_1.formatDateTime; } });
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;AAAA,6DAMmC;AALjC,kHAAA,eAAe,OAAA;AACf,+GAAA,YAAY,OAAA;AACZ,sHAAA,mBAAmB,OAAA;AACnB,8GAAA,WAAW,OAAA;AACX,sHAAA,mBAAmB,OAAA;AAErB,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;AAAA,6DAMmC;AALjC,kHAAA,eAAe,OAAA;AACf,+GAAA,YAAY,OAAA;AACZ,sHAAA,mBAAmB,OAAA;AACnB,8GAAA,WAAW,OAAA;AACX,sHAAA,mBAAmB,OAAA;AAErB,iEAMqC;AALnC,sHAAA,iBAAiB,OAAA;AACjB,mHAAA,cAAc,OAAA;AACd,0HAAA,qBAAqB,OAAA;AACrB,kHAAA,aAAa,OAAA;AACb,0HAAA,qBAAqB,OAAA;AAEvB,mEAKuC;AAJrC,sHAAA,iBAAiB,OAAA;AACjB,mHAAA,cAAc,OAAA;AACd,0HAAA,qBAAqB,OAAA;AACrB,yHAAA,oBAAoB,OAAA"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { NumberFormatPart } from "./Number.types";
|
|
1
|
+
import { NumberFormatPart, Separators } from "./Number.types";
|
|
2
2
|
import { CurrencyOptions } from "./Currency.types";
|
|
3
3
|
export declare class CurrencyFormatter {
|
|
4
4
|
formatter: Intl.NumberFormat;
|
|
@@ -6,7 +6,9 @@ export declare class CurrencyFormatter {
|
|
|
6
6
|
formatCurrency(value: number | string): string;
|
|
7
7
|
formatCurrencyToParts(value: number): NumberFormatPart[];
|
|
8
8
|
parseCurrency(value: string): number;
|
|
9
|
+
getCurrencySeparators(): Separators;
|
|
9
10
|
}
|
|
10
11
|
export declare function formatCurrency(value: number | string, currencyOptions: CurrencyOptions): string;
|
|
11
12
|
export declare function formatCurrencyToParts(value: number, currencyOptions: CurrencyOptions): NumberFormatPart[];
|
|
12
13
|
export declare function parseCurrency(value: string, currencyOptions: CurrencyOptions): number;
|
|
14
|
+
export declare function getCurrencySeparators(currencyOptions: CurrencyOptions): Separators;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.parseCurrency = exports.formatCurrencyToParts = exports.formatCurrency = exports.CurrencyFormatter = void 0;
|
|
3
|
+
exports.getCurrencySeparators = exports.parseCurrency = exports.formatCurrencyToParts = exports.formatCurrency = exports.CurrencyFormatter = void 0;
|
|
4
4
|
const CurrencyUtils_1 = require("./CurrencyUtils");
|
|
5
5
|
const FormatterUtils_1 = require("../FormatterUtils");
|
|
6
6
|
const NumberUtils_1 = require("./NumberUtils");
|
|
@@ -39,6 +39,13 @@ class CurrencyFormatter {
|
|
|
39
39
|
.trim();
|
|
40
40
|
return parseFloat(converted) * sign;
|
|
41
41
|
}
|
|
42
|
+
getCurrencySeparators() {
|
|
43
|
+
const parts = this.formatCurrencyToParts(1e9 + 0.11);
|
|
44
|
+
return {
|
|
45
|
+
decimal: parts.find(({ type }) => type === "decimal")?.value,
|
|
46
|
+
group: parts.find(({ type }) => type === "group").value,
|
|
47
|
+
};
|
|
48
|
+
}
|
|
42
49
|
}
|
|
43
50
|
exports.CurrencyFormatter = CurrencyFormatter;
|
|
44
51
|
function formatCurrency(value, currencyOptions) {
|
|
@@ -56,4 +63,9 @@ function parseCurrency(value, currencyOptions) {
|
|
|
56
63
|
return formatter.parseCurrency(value);
|
|
57
64
|
}
|
|
58
65
|
exports.parseCurrency = parseCurrency;
|
|
66
|
+
function getCurrencySeparators(currencyOptions) {
|
|
67
|
+
const formatter = new CurrencyFormatter(currencyOptions);
|
|
68
|
+
return formatter.getCurrencySeparators();
|
|
69
|
+
}
|
|
70
|
+
exports.getCurrencySeparators = getCurrencySeparators;
|
|
59
71
|
//# sourceMappingURL=CurrencyFormatter.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"CurrencyFormatter.js","sourceRoot":"","sources":["../../src/numbers/CurrencyFormatter.ts"],"names":[],"mappings":";;;AAGA,mDAAuD;AACvD,sDAAgD;AAChD,+CAAuD;
|
|
1
|
+
{"version":3,"file":"CurrencyFormatter.js","sourceRoot":"","sources":["../../src/numbers/CurrencyFormatter.ts"],"names":[],"mappings":";;;AAGA,mDAAuD;AACvD,sDAAgD;AAChD,+CAAuD;AACvD,MAAa,iBAAiB;IAM5B,YAAY,eAAgC;QAC1C,IAAI,CAAC,SAAS,GAAG,IAAA,oCAAoB,EAAC,eAAe,CAAC,CAAC;IACzD,CAAC;IAOD,cAAc,CAAC,KAAsB;QACnC,OAAO,IAAA,oCAAsB,EAAC,KAAK,EAAE,IAAI,CAAC,SAAS,CAAC,CAAC;IACvD,CAAC;IAOD,qBAAqB,CAAC,KAAa;QACjC,OAAO,IAAI,CAAC,SAAS,CAAC,aAAa,CAAC,KAAK,CAAC,CAAC;IAC7C,CAAC;IAOD,aAAa,CAAC,KAAa;QACzB,MAAM,OAAO,GAAG,IAAI,CAAC,qBAAqB,CAAC,CAAC,GAAG,GAAG,GAAG,CAAC,CAAC;QACvD,MAAM,KAAK,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC,IAAI,EAAE,EAAE,CAAC,IAAI,CAAC,IAAI,KAAK,OAAO,CAAC,EAAE,KAAK,CAAC;QACnE,MAAM,OAAO,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC,IAAI,EAAE,EAAE,CAAC,IAAI,CAAC,IAAI,KAAK,SAAS,CAAC,EAAE,KAAK,CAAC;QACvE,MAAM,QAAQ,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC,IAAI,EAAE,EAAE,CAAC,IAAI,CAAC,IAAI,KAAK,UAAU,CAAC,EAAE,KAAK,CAAC;QACzE,MAAM,SAAS,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC,IAAI,EAAE,EAAE,CAAC,IAAI,CAAC,IAAI,KAAK,WAAW,CAAC,EAAE,KAAK,CAAC;QAC3E,MAAM,QAAQ,GAAG,OAAO;aACrB,MAAM,CAAC,CAAC,IAAI,EAAE,EAAE,CAAC,IAAI,CAAC,IAAI,KAAK,SAAS,CAAC;aACzC,GAAG,CAAC,CAAC,OAAO,EAAE,EAAE,CAAC,OAAO,CAAC,KAAK,CAAC,CAAC;QAEnC,MAAM,IAAI,GACR,CAAC,SAAS,IAAI,KAAK,CAAC,QAAQ,CAAC,SAAS,CAAC,CAAC;YACxC,KAAK,CAAC,QAAQ,CAAC,GAAG,CAAC;YACnB,KAAK,CAAC,QAAQ,CAAC,GAAG,CAAC;YACjB,CAAC,CAAC,CAAC,CAAC;YACJ,CAAC,CAAC,CAAC,CAAC;QAWR,MAAM,SAAS,GAAG,QAAQ;aACvB,MAAM,CACL,CAAC,GAAG,EAAE,OAAO,EAAE,EAAE,CACf,GAAG,CAAC,OAAO,CAAC,IAAI,MAAM,CAAC,IAAA,4BAAW,EAAC,OAAO,CAAC,EAAE,GAAG,CAAC,EAAE,EAAE,CAAC,EACxD,KAAK,CACN;aACA,OAAO,CAAC,IAAI,MAAM,CAAC,IAAA,4BAAW,EAAC,KAAM,CAAC,EAAE,GAAG,CAAC,EAAE,EAAE,CAAC;aACjD,OAAO,CAAC,OAAQ,EAAE,GAAG,CAAC;aACtB,OAAO,CAAC,QAAS,EAAE,EAAE,CAAC;aACtB,OAAO,CAAC,SAAU,EAAE,EAAE,CAAC;aACvB,OAAO,CAAC,GAAG,EAAE,EAAE,CAAC;aAChB,OAAO,CAAC,KAAK,EAAE,EAAE,CAAC;aAClB,IAAI,EAAE,CAAC;QAEV,OAAO,UAAU,CAAC,SAAS,CAAC,GAAG,IAAI,CAAC;IACtC,CAAC;IAMD,qBAAqB;QACnB,MAAM,KAAK,GAAG,IAAI,CAAC,qBAAqB,CAAC,GAAG,GAAG,IAAI,CAAC,CAAC;QAErD,OAAO;YACL,OAAO,EAAE,KAAK,CAAC,IAAI,CAAC,CAAC,EAAE,IAAI,EAAE,EAAE,EAAE,CAAC,IAAI,KAAK,SAAS,CAAC,EAAE,KAAK;YAC5D,KAAK,EAAE,KAAK,CAAC,IAAI,CAAC,CAAC,EAAE,IAAI,EAAE,EAAE,EAAE,CAAC,IAAI,KAAK,OAAO,CAAE,CAAC,KAAK;SACzD,CAAC;IACJ,CAAC;CACF;AAxFD,8CAwFC;AASD,SAAgB,cAAc,CAC5B,KAAsB,EACtB,eAAgC;IAEhC,MAAM,SAAS,GAAG,IAAI,iBAAiB,CAAC,eAAe,CAAC,CAAC;IACzD,OAAO,SAAS,CAAC,cAAc,CAAC,KAAK,CAAC,CAAC;AACzC,CAAC;AAND,wCAMC;AASD,SAAgB,qBAAqB,CACnC,KAAa,EACb,eAAgC;IAEhC,MAAM,SAAS,GAAG,IAAI,iBAAiB,CAAC,eAAe,CAAC,CAAC;IACzD,OAAO,SAAS,CAAC,qBAAqB,CAAC,KAAK,CAAC,CAAC;AAChD,CAAC;AAND,sDAMC;AASD,SAAgB,aAAa,CAC3B,KAAa,EACb,eAAgC;IAEhC,MAAM,SAAS,GAAG,IAAI,iBAAiB,CAAC,eAAe,CAAC,CAAC;IACzD,OAAO,SAAS,CAAC,aAAa,CAAC,KAAK,CAAC,CAAC;AACxC,CAAC;AAND,sCAMC;AAQD,SAAgB,qBAAqB,CACnC,eAAgC;IAEhC,MAAM,SAAS,GAAG,IAAI,iBAAiB,CAAC,eAAe,CAAC,CAAC;IACzD,OAAO,SAAS,CAAC,qBAAqB,EAAE,CAAC;AAC3C,CAAC;AALD,sDAKC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"program":{"fileNames":["../node_modules/typescript/lib/lib.es5.d.ts","../node_modules/typescript/lib/lib.es2015.d.ts","../node_modules/typescript/lib/lib.es2016.d.ts","../node_modules/typescript/lib/lib.es2017.d.ts","../node_modules/typescript/lib/lib.es2018.d.ts","../node_modules/typescript/lib/lib.es2019.d.ts","../node_modules/typescript/lib/lib.es2020.d.ts","../node_modules/typescript/lib/lib.es2021.d.ts","../node_modules/typescript/lib/lib.es2022.d.ts","../node_modules/typescript/lib/lib.esnext.d.ts","../node_modules/typescript/lib/lib.dom.d.ts","../node_modules/typescript/lib/lib.es2015.core.d.ts","../node_modules/typescript/lib/lib.es2015.collection.d.ts","../node_modules/typescript/lib/lib.es2015.generator.d.ts","../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../node_modules/typescript/lib/lib.es2015.promise.d.ts","../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../node_modules/typescript/lib/lib.es2017.object.d.ts","../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2017.string.d.ts","../node_modules/typescript/lib/lib.es2017.intl.d.ts","../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../node_modules/typescript/lib/lib.es2018.intl.d.ts","../node_modules/typescript/lib/lib.es2018.promise.d.ts","../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../node_modules/typescript/lib/lib.es2019.array.d.ts","../node_modules/typescript/lib/lib.es2019.object.d.ts","../node_modules/typescript/lib/lib.es2019.string.d.ts","../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../node_modules/typescript/lib/lib.es2020.date.d.ts","../node_modules/typescript/lib/lib.es2020.promise.d.ts","../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2020.string.d.ts","../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2020.intl.d.ts","../node_modules/typescript/lib/lib.es2020.number.d.ts","../node_modules/typescript/lib/lib.es2021.promise.d.ts","../node_modules/typescript/lib/lib.es2021.string.d.ts","../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../node_modules/typescript/lib/lib.es2021.intl.d.ts","../node_modules/typescript/lib/lib.es2022.array.d.ts","../node_modules/typescript/lib/lib.es2022.error.d.ts","../node_modules/typescript/lib/lib.es2022.intl.d.ts","../node_modules/typescript/lib/lib.es2022.object.d.ts","../node_modules/typescript/lib/lib.es2022.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2022.string.d.ts","../node_modules/typescript/lib/lib.esnext.intl.d.ts","../src/Formatter.types.ts","../src/FormatterUtils.ts","../src/numbers/Number.types.ts","../node_modules/@types/big.js/index.d.ts","../src/numbers/NumberUtils.ts","../src/numbers/NumberFormatter.ts","../src/numbers/Currency.types.ts","../src/numbers/CurrencyUtils.ts","../src/numbers/CurrencyFormatter.ts","../node_modules/weekstart/index.d.ts","../src/dateTimes/DateTime.types.ts","../src/dateTimes/DateTimeUtils.ts","../src/dateTimes/DateTimeFormatter.ts","../src/index.ts","../node_modules/@types/node/ts4.8/assert.d.ts","../node_modules/@types/node/ts4.8/assert/strict.d.ts","../node_modules/@types/node/ts4.8/globals.d.ts","../node_modules/@types/node/ts4.8/async_hooks.d.ts","../node_modules/@types/node/ts4.8/buffer.d.ts","../node_modules/@types/node/ts4.8/child_process.d.ts","../node_modules/@types/node/ts4.8/cluster.d.ts","../node_modules/@types/node/ts4.8/console.d.ts","../node_modules/@types/node/ts4.8/constants.d.ts","../node_modules/@types/node/ts4.8/crypto.d.ts","../node_modules/@types/node/ts4.8/dgram.d.ts","../node_modules/@types/node/ts4.8/diagnostics_channel.d.ts","../node_modules/@types/node/ts4.8/dns.d.ts","../node_modules/@types/node/ts4.8/dns/promises.d.ts","../node_modules/@types/node/ts4.8/domain.d.ts","../node_modules/@types/node/ts4.8/events.d.ts","../node_modules/@types/node/ts4.8/fs.d.ts","../node_modules/@types/node/ts4.8/fs/promises.d.ts","../node_modules/@types/node/ts4.8/http.d.ts","../node_modules/@types/node/ts4.8/http2.d.ts","../node_modules/@types/node/ts4.8/https.d.ts","../node_modules/@types/node/ts4.8/inspector.d.ts","../node_modules/@types/node/ts4.8/module.d.ts","../node_modules/@types/node/ts4.8/net.d.ts","../node_modules/@types/node/ts4.8/os.d.ts","../node_modules/@types/node/ts4.8/path.d.ts","../node_modules/@types/node/ts4.8/perf_hooks.d.ts","../node_modules/@types/node/ts4.8/process.d.ts","../node_modules/@types/node/ts4.8/punycode.d.ts","../node_modules/@types/node/ts4.8/querystring.d.ts","../node_modules/@types/node/ts4.8/readline.d.ts","../node_modules/@types/node/ts4.8/readline/promises.d.ts","../node_modules/@types/node/ts4.8/repl.d.ts","../node_modules/@types/node/ts4.8/stream.d.ts","../node_modules/@types/node/ts4.8/stream/promises.d.ts","../node_modules/@types/node/ts4.8/stream/consumers.d.ts","../node_modules/@types/node/ts4.8/stream/web.d.ts","../node_modules/@types/node/ts4.8/string_decoder.d.ts","../node_modules/@types/node/ts4.8/test.d.ts","../node_modules/@types/node/ts4.8/timers.d.ts","../node_modules/@types/node/ts4.8/timers/promises.d.ts","../node_modules/@types/node/ts4.8/tls.d.ts","../node_modules/@types/node/ts4.8/trace_events.d.ts","../node_modules/@types/node/ts4.8/tty.d.ts","../node_modules/@types/node/ts4.8/url.d.ts","../node_modules/@types/node/ts4.8/util.d.ts","../node_modules/@types/node/ts4.8/v8.d.ts","../node_modules/@types/node/ts4.8/vm.d.ts","../node_modules/@types/node/ts4.8/wasi.d.ts","../node_modules/@types/node/ts4.8/worker_threads.d.ts","../node_modules/@types/node/ts4.8/zlib.d.ts","../node_modules/@types/node/ts4.8/globals.global.d.ts","../node_modules/@types/node/ts4.8/index.d.ts","../node_modules/@jest/expect-utils/build/index.d.ts","../node_modules/chalk/index.d.ts","../node_modules/@sinclair/typebox/typebox.d.ts","../node_modules/@jest/schemas/build/index.d.ts","../node_modules/pretty-format/build/index.d.ts","../node_modules/jest-diff/build/index.d.ts","../node_modules/jest-matcher-utils/build/index.d.ts","../node_modules/expect/build/index.d.ts","../node_modules/@types/jest/index.d.ts"],"fileInfos":[{"version":"f20c05dbfe50a208301d2a1da37b9931bce0466eb5a1f4fe240971b4ecc82b67","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84","1fc5ab7a764205c68fa10d381b08417795fc73111d6dd16b5b1ed36badb743d9","746d62152361558ea6d6115cf0da4dd10ede041d14882ede3568bce5dc4b4f1f","d11a03592451da2d1065e09e61f4e2a9bf68f780f4f6623c18b57816a9679d17","aea179452def8a6152f98f63b191b84e7cbd69b0e248c91e61fb2e52328abe8c",{"version":"9b087de7268e4efc5f215347a62656663933d63c0b1d7b624913240367b999ea","affectsGlobalScope":true},{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true},{"version":"8cc8c5a3bac513368b0157f3d8b31cfdcfe78b56d3724f30f80ed9715e404af8","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"0d5f52b3174bee6edb81260ebcd792692c32c81fd55499d69531496f3f2b25e7","affectsGlobalScope":true},{"version":"55f400eec64d17e888e278f4def2f254b41b89515d3b88ad75d5e05f019daddd","affectsGlobalScope":true},{"version":"181f1784c6c10b751631b24ce60c7f78b20665db4550b335be179217bacc0d5f","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"75ec0bdd727d887f1b79ed6619412ea72ba3c81d92d0787ccb64bab18d261f14","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"81cac4cbc92c0c839c70f8ffb94eb61e2d32dc1c3cf6d95844ca099463cf37ea","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"09aa50414b80c023553090e2f53827f007a301bc34b0495bfb2c3c08ab9ad1eb","affectsGlobalScope":true},{"version":"d7f680a43f8cd12a6b6122c07c54ba40952b0c8aa140dcfcf32eb9e6cb028596","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"775d9c9fd150d5de79e0450f35bc8b8f94ae64e3eb5da12725ff2a649dccc777","affectsGlobalScope":true},{"version":"b248e32ca52e8f5571390a4142558ae4f203ae2f94d5bac38a3084d529ef4e58","affectsGlobalScope":true},{"version":"6c55633c733c8378db65ac3da7a767c3cf2cf3057f0565a9124a16a3a2019e87","affectsGlobalScope":true},{"version":"fb4416144c1bf0323ccbc9afb0ab289c07312214e8820ad17d709498c865a3fe","affectsGlobalScope":true},{"version":"5b0ca94ec819d68d33da516306c15297acec88efeb0ae9e2b39f71dbd9685ef7","affectsGlobalScope":true},{"version":"34c839eaaa6d78c8674ae2c37af2236dee6831b13db7b4ef4df3ec889a04d4f2","affectsGlobalScope":true},{"version":"34478567f8a80171f88f2f30808beb7da15eac0538ae91282dd33dce928d98ed","affectsGlobalScope":true},{"version":"ab7d58e6161a550ff92e5aff755dc37fe896245348332cd5f1e1203479fe0ed1","affectsGlobalScope":true},{"version":"6bda95ea27a59a276e46043b7065b55bd4b316c25e70e29b572958fa77565d43","affectsGlobalScope":true},{"version":"aedb8de1abb2ff1095c153854a6df7deae4a5709c37297f9d6e9948b6806fa66","affectsGlobalScope":true},{"version":"a4da0551fd39b90ca7ce5f68fb55d4dc0c1396d589b612e1902f68ee090aaada","affectsGlobalScope":true},{"version":"11ffe3c281f375fff9ffdde8bbec7669b4dd671905509079f866f2354a788064","affectsGlobalScope":true},{"version":"52d1bb7ab7a3306fd0375c8bff560feed26ed676a5b0457fa8027b563aecb9a4","affectsGlobalScope":true},{"version":"9b59c27b4ef90cbb4a98cbc3d444d85725658f904490ccc45e385304d1a6690e","signature":"d491049d09e2052f8e93416b892c5de684e633799f42c1116739793d49e09582"},{"version":"343549fdf2f9d7e32b3101bbade018e3294629f52b3a3a4c708eb5b60d6002ba","signature":"801178d578771b25d7e4d204a68eb723ee5c1612fe28610b9b9f2cd589f5de31"},{"version":"07b0eba33a8e1d03515c33b3f4f690b09273eb8b6f0092af603126786ce5860a","signature":"5a01877f34d4bde54fc9f5c91d9c4526ce50736f5eba579db31f6a297b74109c"},"2bcd9f3ac3b0ac799fcc507c899e1ef8b1ddd5b8914098ff93208139b3089930",{"version":"b19193bfc3f9b6b3fa36328d4824bba0dcdd30f0dbc0ab2b3a7b43b55ace342b","signature":"7f5c60578aa53ebf370323cff01827f184dfe8c2bce6a6280208cf3dd3631af7"},{"version":"72060fd4ed8bce4a3976518820753d6799753e50b5d319f965f3b888320d15f7","signature":"88eb02637796c58463bc19901e905138205e8b32d5870582db55c89151bd3301"},{"version":"5600c75c0c455d438307ec6e91584e4a8e15419fcb3b358ae4e67542cc62a41c","signature":"b440162f811778956a44074e6587023a39bcabc5c7dc737999a0bc7f71fc40ad"},{"version":"aa11fbe6f0983151c77d9e8dfb48669e4b28509e62f126279d091dadb7ecf44a","signature":"1eab014281342bca31ca30d3ac1b8c7b6907030e8281d2a15c66838d673e5549"},{"version":"9ee06035c88aa18403c71aa5a1a66fd05f3637bc387e26faddcbe96bdb9b1f37","signature":"1ea1d9a3abf586dc089c4a045c36459fcacaf1ce7dc486ad6927a2866f3e15ab"},"87f93684199d62b824a76bf7012867fad48aa8f6b9ca30711d7153255f67caac",{"version":"8480d5311fd0926223c00ae7be169cac38546013a3727050e69f61bb8fc31a6a","signature":"1e2af508449bd96a30d81b3f6f479d693197aff9bbb757368611292e42bd892f"},{"version":"fe1f5eac5028bb54038aa56e9a834b9dec398348d67f9ecf3931c907ae14f086","signature":"18d4d4b13e7bb34ba7cb87d5d672f19c2ae63f6aca376b0c3565dac1781871be"},{"version":"aeab3a4aeb68b831b4394501fc1e05f91eaa4709a687482bf0521195d85b0c18","signature":"be28fb1f0495ae76493b727cc19a368d6b3e95bdadcceedc01a0a45050d933e1"},{"version":"ec788439a3a4e24b5b194cc65a08d8e9825a638fecd3dce165f997aea4d45a0e","signature":"b8c6f13b62261b1028e4741707adfc6dc7bd3451a0dbe8e9774a0320745fbc35"},"9122ed7070e054b73ebab37c2373a196def2d90e7d1a9a7fcd9d46b0e51fae78","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"77f0b5c6a193a699c9f7d7fb0578e64e562d271afa740783665d2a827104a873","affectsGlobalScope":true},"21a167fec8f933752fb8157f06d28fab6817af3ad9b0bdb1908a10762391eab9",{"version":"002d6d5f044365b3fbfba0ba9be3bb57cac09b81547c8df4b0795755d2081d90","affectsGlobalScope":true},"0c0cee62cb619aed81133b904f644515ba3064487002a7da83fd8aa07b1b4abd","5a94487653355b56018122d92392beb2e5f4a6c63ba5cef83bbe1c99775ef713",{"version":"d5135ad93b33adcce80b18f8065087934cdc1730d63db58562edcf017e1aad9b","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","c4cfc9a6e2ebb8bc8c0e2392dfc4056993ced3b35069ebf132ac18ca7a562881","bb9c4ffa5e6290c6980b63c815cdd1625876dadb2efaf77edbe82984be93e55e","75ecef44f126e2ae018b4abbd85b6e8a2e2ba1638ebec56cc64274643ce3567b","f30bb836526d930a74593f7b0f5c1c46d10856415a8f69e5e2fc3db80371e362","14b5aa23c5d0ae1907bc696ac7b6915d88f7d85799cc0dc2dcf98fbce2c5a67c","5c439dafdc09abe4d6c260a96b822fa0ba5be7203c71a63ab1f1423cd9e838ea",{"version":"bae4ea23beb8397755b935cb84d3cdc6cdb0b1b4a329b90de9fc6c8774d71994","affectsGlobalScope":true},"cec36af22f514322f870e81d30675c78df82ae8bf4863f5fd4e4424c040c678d","df36874d9e56aff601e921c4b3971d37cf66d14f6455935ce821e6cad13b1823","d1c976fc225e71243d88b1f6c5d3d7598de2c020e3e5436a8863d42b949eef3b","1abb206a4ecd13b21536b677d7d5f66e0d7316f0d44610197cfcc5776f78884a","dbe5aa5a5dd8bd1c6a8d11b1310c3f0cdabaacc78a37b394a8c7b14faeb5fb84","2c828a5405191d006115ab34e191b8474bc6c86ffdc401d1a9864b1b6e088a58",{"version":"e8b18c6385ff784228a6f369694fcf1a6b475355ba89090a88de13587a9391d5","affectsGlobalScope":true},"d4ac44f01d42f541631c5fc88d0ed8efac29a3a3ad9a745d9fd58f8b61ed132e","7c013aa892414a7fdcfd861ae524a668eaa3ede8c7c0acafaf611948122c8d93","b68bd7bef90dab08b1866a9fee24f03d9fee10bcb3f587b074e96e61abf6d3f0","cb4f3f03480e1727eae46400606cecaa97f550186ff8fa909ebc00db4180531b",{"version":"b3624aed92dab6da8484280d3cb3e2f4130ec3f4ef3f8201c95144ae9e898bb6","affectsGlobalScope":true},"5153a2fd150e46ce57bb3f8db1318d33f6ad3261ed70ceeff92281c0608c74a3","d1a78a3c5708807e8de3e399f91df4797c62e44b02195eefc2209b2e713e54ee","36b03690b628eab08703d63f04eaa89c5df202e5f1edf3989f13ad389cd2c091","0effadd232a20498b11308058e334d3339cc5bf8c4c858393e38d9d4c0013dcf","25846d43937c672bab7e8195f3d881f93495df712ee901860effc109918938cc","556bf5c36deb62cffa1bf697c1789fe008ec82db0273025001db66732714e9d9","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff",{"version":"806ef4cac3b3d9fa4a48d849c8e084d7c72fcd7b16d76e06049a9ed742ff79c0","affectsGlobalScope":true},"44b8b584a338b190a59f4f6929d072431950c7bd92ec2694821c11bce180c8a5","23b89798789dffbd437c0c423f5d02d11f9736aea73d6abf16db4f812ff36eda","24ad30a03d6c9266b63540956868dd70fa2dc523d60d780d6586eb0c281946bc",{"version":"970a90f76d4d219ad60819d61f5994514087ba94c985647a3474a5a3d12714ed","affectsGlobalScope":true},"664d8f2d59164f2e08c543981453893bc7e003e4dfd29651ce09db13e9457980","4c8525f256873c7ba3135338c647eaf0ca7115a1a2805ae2d0056629461186ce","3c13ef48634e7b5012fcf7e8fce7496352c2d779a7201389ca96a2a81ee4314d","5d0a25ec910fa36595f85a67ac992d7a53dd4064a1ba6aea1c9f14ab73a023f2",{"version":"bfe39beb986d2a2e512c091cbe924f1c415bc65de54de0e2f6a0dc6f84c183d9","affectsGlobalScope":true},"2d526e6f21d8cc66ac11ada32874e95ae88d870c6c9d3d9d4e03b1d1f9ad7b8e","06d7c42d256f0ce6afe1b2b6cfbc97ab391f29dadb00dd0ae8e8f23f5bc916c3","ec4bd1b200670fb567920db572d6701ed42a9641d09c4ff6869768c8f81b404c","e59a892d87e72733e2a9ca21611b9beb52977be2696c7ba4b216cbbb9a48f5aa","d2ec52f565f0570e90b659811347bd689f8c6039b11eaaccd0f243759d46da6e","8a300fa9b698845a1f9c41ecbe2c5966634582a8e2020d51abcace9b55aa959e",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"ecd8eb2ed2ea3f7e17ae00a2ce61db2c199e6e3944f6ff4a02de85c1a98e38eb","763e521cf114b80e0dd0e21ca49b9f8ae62e8999555a5e7bade8ce36b33001c2","0d14fa22c41fdc7277e6f71473b20ebc07f40f00e38875142335d5b63cdfc9d2","032cbd1883827ca3728c1400145403b62e65b7b584a0d2115ae538c9edec7936","ffcc5500e77223169833fc6eb59b3a507944a1f89574e0a1276b0ea7fc22c4a4","22f13de9e2fe5f0f4724797abd3d34a1cdd6e47ef81fc4933fea3b8bf4ad524b","e3ba509d3dce019b3190ceb2f3fc88e2610ab717122dabd91a9efaa37804040d","cda0cb09b995489b7f4c57f168cd31b83dcbaa7aad49612734fb3c9c73f6e4f2","f72f8428f3c1caa22e9c247d046603b85b442c0dae7b77a7a0bc092c18867cb7",{"version":"195f63105abc03e72b6a176e3e34dfb5ac932b55db378fdc7874b1617e24b465","affectsGlobalScope":true}],"options":{"allowSyntheticDefaultImports":true,"declaration":true,"emitDecoratorMetadata":true,"esModuleInterop":true,"experimentalDecorators":true,"module":1,"outDir":"./","removeComments":true,"sourceMap":true,"strict":true,"strictBindCallApply":true,"strictFunctionTypes":true,"strictNullChecks":true,"strictPropertyInitialization":true,"target":7},"fileIdsList":[[114],[114,124],[114,126,129],[69,114],[72,114],[73,78,114],[74,84,85,92,102,113,114],[74,75,84,92,114],[76,114],[77,78,85,93,114],[78,102,110,114],[79,81,84,92,114],[80,114],[81,82,114],[83,84,114],[84,114],[84,85,86,102,113,114],[84,85,86,102,105,114],[114,118],[87,92,102,113,114],[84,85,87,88,92,102,110,113,114],[87,89,102,110,113,114],[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],[84,90,114],[91,113,114],[81,84,92,102,114],[93,114],[94,114],[72,95,114],[96,112,114,118],[97,114],[98,114],[84,99,100,114],[99,101,114,116],[84,102,103,104,105,114],[102,104,114],[102,103,114],[105,114],[106,114],[84,108,109,114],[108,109,114],[78,92,102,110,114],[111,114],[92,112,114],[73,87,98,113,114],[78,114],[102,114,115],[114,116],[114,117],[73,78,84,86,95,102,113,114,116,118],[102,114,119],[114,122,128],[114,126],[114,123,127],[114,125],[55,114],[55,64,65,66,114],[56,65,114],[55,57,60,61,63,65,67,114],[57,114],[56,57,59,61,62,114],[56,59,61,114],[55,56,57,59,114],[56,57,58,114],[55],[55,65],[65],[55,57,60,61,63,65,67],[57],[57,61],[61],[55,57]],"referencedMap":[[122,1],[125,2],[124,1],[58,1],[130,3],[69,4],[70,4],[72,5],[73,6],[74,7],[75,8],[76,9],[77,10],[78,11],[79,12],[80,13],[81,14],[82,14],[83,15],[84,16],[85,17],[86,18],[71,19],[120,1],[87,20],[88,21],[89,22],[121,23],[90,24],[91,25],[92,26],[93,27],[94,28],[95,29],[96,30],[97,31],[98,32],[99,33],[100,33],[101,34],[102,35],[104,36],[103,37],[105,38],[106,39],[107,1],[108,40],[109,41],[110,42],[111,43],[112,44],[113,45],[114,46],[115,47],[116,48],[117,49],[118,50],[119,51],[123,1],[129,52],[127,53],[128,54],[126,55],[11,1],[13,1],[12,1],[2,1],[14,1],[15,1],[16,1],[17,1],[18,1],[19,1],[20,1],[21,1],[3,1],[4,1],[25,1],[22,1],[23,1],[24,1],[26,1],[27,1],[28,1],[5,1],[29,1],[30,1],[31,1],[32,1],[6,1],[33,1],[34,1],[35,1],[36,1],[7,1],[37,1],[42,1],[43,1],[38,1],[39,1],[40,1],[41,1],[8,1],[47,1],[44,1],[45,1],[46,1],[48,1],[9,1],[49,1],[50,1],[51,1],[52,1],[53,1],[1,1],[10,1],[54,1],[64,1],[55,1],[56,56],[65,56],[67,57],[66,58],[68,59],[61,60],[63,61],[62,62],[57,56],[60,63],[59,64]],"exportedModulesMap":[[122,1],[125,2],[124,1],[58,1],[130,3],[69,4],[70,4],[72,5],[73,6],[74,7],[75,8],[76,9],[77,10],[78,11],[79,12],[80,13],[81,14],[82,14],[83,15],[84,16],[85,17],[86,18],[71,19],[120,1],[87,20],[88,21],[89,22],[121,23],[90,24],[91,25],[92,26],[93,27],[94,28],[95,29],[96,30],[97,31],[98,32],[99,33],[100,33],[101,34],[102,35],[104,36],[103,37],[105,38],[106,39],[107,1],[108,40],[109,41],[110,42],[111,43],[112,44],[113,45],[114,46],[115,47],[116,48],[117,49],[118,50],[119,51],[123,1],[129,52],[127,53],[128,54],[126,55],[11,1],[13,1],[12,1],[2,1],[14,1],[15,1],[16,1],[17,1],[18,1],[19,1],[20,1],[21,1],[3,1],[4,1],[25,1],[22,1],[23,1],[24,1],[26,1],[27,1],[28,1],[5,1],[29,1],[30,1],[31,1],[32,1],[6,1],[33,1],[34,1],[35,1],[36,1],[7,1],[37,1],[42,1],[43,1],[38,1],[39,1],[40,1],[41,1],[8,1],[47,1],[44,1],[45,1],[46,1],[48,1],[9,1],[49,1],[50,1],[51,1],[52,1],[53,1],[1,1],[10,1],[54,1],[64,1],[56,65],[65,65],[67,66],[66,67],[68,68],[61,69],[63,70],[62,71],[57,65],[60,72],[59,69]],"semanticDiagnosticsPerFile":[122,125,124,58,130,69,70,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,71,120,87,88,89,121,90,91,92,93,94,95,96,97,98,99,100,101,102,104,103,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,123,129,127,128,126,11,13,12,2,14,15,16,17,18,19,20,21,3,4,25,22,23,24,26,27,28,5,29,30,31,32,6,33,34,35,36,7,37,42,43,38,39,40,41,8,47,44,45,46,48,9,49,50,51,52,53,1,10,54,64,55,56,65,67,66,68,61,63,62,57,60,59]},"version":"4.8.4"}
|
|
1
|
+
{"program":{"fileNames":["../node_modules/typescript/lib/lib.es5.d.ts","../node_modules/typescript/lib/lib.es2015.d.ts","../node_modules/typescript/lib/lib.es2016.d.ts","../node_modules/typescript/lib/lib.es2017.d.ts","../node_modules/typescript/lib/lib.es2018.d.ts","../node_modules/typescript/lib/lib.es2019.d.ts","../node_modules/typescript/lib/lib.es2020.d.ts","../node_modules/typescript/lib/lib.es2021.d.ts","../node_modules/typescript/lib/lib.es2022.d.ts","../node_modules/typescript/lib/lib.esnext.d.ts","../node_modules/typescript/lib/lib.dom.d.ts","../node_modules/typescript/lib/lib.es2015.core.d.ts","../node_modules/typescript/lib/lib.es2015.collection.d.ts","../node_modules/typescript/lib/lib.es2015.generator.d.ts","../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../node_modules/typescript/lib/lib.es2015.promise.d.ts","../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../node_modules/typescript/lib/lib.es2017.object.d.ts","../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2017.string.d.ts","../node_modules/typescript/lib/lib.es2017.intl.d.ts","../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../node_modules/typescript/lib/lib.es2018.intl.d.ts","../node_modules/typescript/lib/lib.es2018.promise.d.ts","../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../node_modules/typescript/lib/lib.es2019.array.d.ts","../node_modules/typescript/lib/lib.es2019.object.d.ts","../node_modules/typescript/lib/lib.es2019.string.d.ts","../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../node_modules/typescript/lib/lib.es2020.date.d.ts","../node_modules/typescript/lib/lib.es2020.promise.d.ts","../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2020.string.d.ts","../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2020.intl.d.ts","../node_modules/typescript/lib/lib.es2020.number.d.ts","../node_modules/typescript/lib/lib.es2021.promise.d.ts","../node_modules/typescript/lib/lib.es2021.string.d.ts","../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../node_modules/typescript/lib/lib.es2021.intl.d.ts","../node_modules/typescript/lib/lib.es2022.array.d.ts","../node_modules/typescript/lib/lib.es2022.error.d.ts","../node_modules/typescript/lib/lib.es2022.intl.d.ts","../node_modules/typescript/lib/lib.es2022.object.d.ts","../node_modules/typescript/lib/lib.es2022.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2022.string.d.ts","../node_modules/typescript/lib/lib.esnext.intl.d.ts","../src/Formatter.types.ts","../src/FormatterUtils.ts","../src/numbers/Number.types.ts","../node_modules/@types/big.js/index.d.ts","../src/numbers/NumberUtils.ts","../src/numbers/NumberFormatter.ts","../src/numbers/Currency.types.ts","../src/numbers/CurrencyUtils.ts","../src/numbers/CurrencyFormatter.ts","../node_modules/weekstart/index.d.ts","../src/dateTimes/DateTime.types.ts","../src/dateTimes/DateTimeUtils.ts","../src/dateTimes/DateTimeFormatter.ts","../src/index.ts","../node_modules/@types/node/ts4.8/assert.d.ts","../node_modules/@types/node/ts4.8/assert/strict.d.ts","../node_modules/@types/node/ts4.8/globals.d.ts","../node_modules/@types/node/ts4.8/async_hooks.d.ts","../node_modules/@types/node/ts4.8/buffer.d.ts","../node_modules/@types/node/ts4.8/child_process.d.ts","../node_modules/@types/node/ts4.8/cluster.d.ts","../node_modules/@types/node/ts4.8/console.d.ts","../node_modules/@types/node/ts4.8/constants.d.ts","../node_modules/@types/node/ts4.8/crypto.d.ts","../node_modules/@types/node/ts4.8/dgram.d.ts","../node_modules/@types/node/ts4.8/diagnostics_channel.d.ts","../node_modules/@types/node/ts4.8/dns.d.ts","../node_modules/@types/node/ts4.8/dns/promises.d.ts","../node_modules/@types/node/ts4.8/domain.d.ts","../node_modules/@types/node/ts4.8/events.d.ts","../node_modules/@types/node/ts4.8/fs.d.ts","../node_modules/@types/node/ts4.8/fs/promises.d.ts","../node_modules/@types/node/ts4.8/http.d.ts","../node_modules/@types/node/ts4.8/http2.d.ts","../node_modules/@types/node/ts4.8/https.d.ts","../node_modules/@types/node/ts4.8/inspector.d.ts","../node_modules/@types/node/ts4.8/module.d.ts","../node_modules/@types/node/ts4.8/net.d.ts","../node_modules/@types/node/ts4.8/os.d.ts","../node_modules/@types/node/ts4.8/path.d.ts","../node_modules/@types/node/ts4.8/perf_hooks.d.ts","../node_modules/@types/node/ts4.8/process.d.ts","../node_modules/@types/node/ts4.8/punycode.d.ts","../node_modules/@types/node/ts4.8/querystring.d.ts","../node_modules/@types/node/ts4.8/readline.d.ts","../node_modules/@types/node/ts4.8/readline/promises.d.ts","../node_modules/@types/node/ts4.8/repl.d.ts","../node_modules/@types/node/ts4.8/stream.d.ts","../node_modules/@types/node/ts4.8/stream/promises.d.ts","../node_modules/@types/node/ts4.8/stream/consumers.d.ts","../node_modules/@types/node/ts4.8/stream/web.d.ts","../node_modules/@types/node/ts4.8/string_decoder.d.ts","../node_modules/@types/node/ts4.8/test.d.ts","../node_modules/@types/node/ts4.8/timers.d.ts","../node_modules/@types/node/ts4.8/timers/promises.d.ts","../node_modules/@types/node/ts4.8/tls.d.ts","../node_modules/@types/node/ts4.8/trace_events.d.ts","../node_modules/@types/node/ts4.8/tty.d.ts","../node_modules/@types/node/ts4.8/url.d.ts","../node_modules/@types/node/ts4.8/util.d.ts","../node_modules/@types/node/ts4.8/v8.d.ts","../node_modules/@types/node/ts4.8/vm.d.ts","../node_modules/@types/node/ts4.8/wasi.d.ts","../node_modules/@types/node/ts4.8/worker_threads.d.ts","../node_modules/@types/node/ts4.8/zlib.d.ts","../node_modules/@types/node/ts4.8/globals.global.d.ts","../node_modules/@types/node/ts4.8/index.d.ts","../node_modules/@jest/expect-utils/build/index.d.ts","../node_modules/chalk/index.d.ts","../node_modules/@sinclair/typebox/typebox.d.ts","../node_modules/@jest/schemas/build/index.d.ts","../node_modules/pretty-format/build/index.d.ts","../node_modules/jest-diff/build/index.d.ts","../node_modules/jest-matcher-utils/build/index.d.ts","../node_modules/expect/build/index.d.ts","../node_modules/@types/jest/index.d.ts"],"fileInfos":[{"version":"f20c05dbfe50a208301d2a1da37b9931bce0466eb5a1f4fe240971b4ecc82b67","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84","1fc5ab7a764205c68fa10d381b08417795fc73111d6dd16b5b1ed36badb743d9","746d62152361558ea6d6115cf0da4dd10ede041d14882ede3568bce5dc4b4f1f","d11a03592451da2d1065e09e61f4e2a9bf68f780f4f6623c18b57816a9679d17","aea179452def8a6152f98f63b191b84e7cbd69b0e248c91e61fb2e52328abe8c",{"version":"9b087de7268e4efc5f215347a62656663933d63c0b1d7b624913240367b999ea","affectsGlobalScope":true},{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true},{"version":"8cc8c5a3bac513368b0157f3d8b31cfdcfe78b56d3724f30f80ed9715e404af8","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"0d5f52b3174bee6edb81260ebcd792692c32c81fd55499d69531496f3f2b25e7","affectsGlobalScope":true},{"version":"55f400eec64d17e888e278f4def2f254b41b89515d3b88ad75d5e05f019daddd","affectsGlobalScope":true},{"version":"181f1784c6c10b751631b24ce60c7f78b20665db4550b335be179217bacc0d5f","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"75ec0bdd727d887f1b79ed6619412ea72ba3c81d92d0787ccb64bab18d261f14","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"81cac4cbc92c0c839c70f8ffb94eb61e2d32dc1c3cf6d95844ca099463cf37ea","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"09aa50414b80c023553090e2f53827f007a301bc34b0495bfb2c3c08ab9ad1eb","affectsGlobalScope":true},{"version":"d7f680a43f8cd12a6b6122c07c54ba40952b0c8aa140dcfcf32eb9e6cb028596","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"775d9c9fd150d5de79e0450f35bc8b8f94ae64e3eb5da12725ff2a649dccc777","affectsGlobalScope":true},{"version":"b248e32ca52e8f5571390a4142558ae4f203ae2f94d5bac38a3084d529ef4e58","affectsGlobalScope":true},{"version":"6c55633c733c8378db65ac3da7a767c3cf2cf3057f0565a9124a16a3a2019e87","affectsGlobalScope":true},{"version":"fb4416144c1bf0323ccbc9afb0ab289c07312214e8820ad17d709498c865a3fe","affectsGlobalScope":true},{"version":"5b0ca94ec819d68d33da516306c15297acec88efeb0ae9e2b39f71dbd9685ef7","affectsGlobalScope":true},{"version":"34c839eaaa6d78c8674ae2c37af2236dee6831b13db7b4ef4df3ec889a04d4f2","affectsGlobalScope":true},{"version":"34478567f8a80171f88f2f30808beb7da15eac0538ae91282dd33dce928d98ed","affectsGlobalScope":true},{"version":"ab7d58e6161a550ff92e5aff755dc37fe896245348332cd5f1e1203479fe0ed1","affectsGlobalScope":true},{"version":"6bda95ea27a59a276e46043b7065b55bd4b316c25e70e29b572958fa77565d43","affectsGlobalScope":true},{"version":"aedb8de1abb2ff1095c153854a6df7deae4a5709c37297f9d6e9948b6806fa66","affectsGlobalScope":true},{"version":"a4da0551fd39b90ca7ce5f68fb55d4dc0c1396d589b612e1902f68ee090aaada","affectsGlobalScope":true},{"version":"11ffe3c281f375fff9ffdde8bbec7669b4dd671905509079f866f2354a788064","affectsGlobalScope":true},{"version":"52d1bb7ab7a3306fd0375c8bff560feed26ed676a5b0457fa8027b563aecb9a4","affectsGlobalScope":true},{"version":"9b59c27b4ef90cbb4a98cbc3d444d85725658f904490ccc45e385304d1a6690e","signature":"d491049d09e2052f8e93416b892c5de684e633799f42c1116739793d49e09582"},{"version":"343549fdf2f9d7e32b3101bbade018e3294629f52b3a3a4c708eb5b60d6002ba","signature":"801178d578771b25d7e4d204a68eb723ee5c1612fe28610b9b9f2cd589f5de31"},{"version":"07b0eba33a8e1d03515c33b3f4f690b09273eb8b6f0092af603126786ce5860a","signature":"5a01877f34d4bde54fc9f5c91d9c4526ce50736f5eba579db31f6a297b74109c"},"2bcd9f3ac3b0ac799fcc507c899e1ef8b1ddd5b8914098ff93208139b3089930",{"version":"b19193bfc3f9b6b3fa36328d4824bba0dcdd30f0dbc0ab2b3a7b43b55ace342b","signature":"7f5c60578aa53ebf370323cff01827f184dfe8c2bce6a6280208cf3dd3631af7"},{"version":"72060fd4ed8bce4a3976518820753d6799753e50b5d319f965f3b888320d15f7","signature":"88eb02637796c58463bc19901e905138205e8b32d5870582db55c89151bd3301"},{"version":"5600c75c0c455d438307ec6e91584e4a8e15419fcb3b358ae4e67542cc62a41c","signature":"b440162f811778956a44074e6587023a39bcabc5c7dc737999a0bc7f71fc40ad"},{"version":"aa11fbe6f0983151c77d9e8dfb48669e4b28509e62f126279d091dadb7ecf44a","signature":"1eab014281342bca31ca30d3ac1b8c7b6907030e8281d2a15c66838d673e5549"},{"version":"515129a34adb4ca19230dafae394893d1fc89b6f14008144e14d51bd01a69059","signature":"693c98d9e8afd01c61e64e8eb6108e26ba319898dd6516785e4b3c8be07cdd90"},"87f93684199d62b824a76bf7012867fad48aa8f6b9ca30711d7153255f67caac",{"version":"8480d5311fd0926223c00ae7be169cac38546013a3727050e69f61bb8fc31a6a","signature":"1e2af508449bd96a30d81b3f6f479d693197aff9bbb757368611292e42bd892f"},{"version":"fe1f5eac5028bb54038aa56e9a834b9dec398348d67f9ecf3931c907ae14f086","signature":"18d4d4b13e7bb34ba7cb87d5d672f19c2ae63f6aca376b0c3565dac1781871be"},{"version":"aeab3a4aeb68b831b4394501fc1e05f91eaa4709a687482bf0521195d85b0c18","signature":"be28fb1f0495ae76493b727cc19a368d6b3e95bdadcceedc01a0a45050d933e1"},{"version":"86db2ec6cee95cb6825cd8a6ad6eb432652331f62e96f8a957da13c3342a3a68","signature":"9ebdd7fc16a9da12047a0a6440fbbde25be2a207fa2253d6c3d79cebe6d08b2f"},"9122ed7070e054b73ebab37c2373a196def2d90e7d1a9a7fcd9d46b0e51fae78","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"77f0b5c6a193a699c9f7d7fb0578e64e562d271afa740783665d2a827104a873","affectsGlobalScope":true},"21a167fec8f933752fb8157f06d28fab6817af3ad9b0bdb1908a10762391eab9",{"version":"002d6d5f044365b3fbfba0ba9be3bb57cac09b81547c8df4b0795755d2081d90","affectsGlobalScope":true},"0c0cee62cb619aed81133b904f644515ba3064487002a7da83fd8aa07b1b4abd","5a94487653355b56018122d92392beb2e5f4a6c63ba5cef83bbe1c99775ef713",{"version":"d5135ad93b33adcce80b18f8065087934cdc1730d63db58562edcf017e1aad9b","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","c4cfc9a6e2ebb8bc8c0e2392dfc4056993ced3b35069ebf132ac18ca7a562881","bb9c4ffa5e6290c6980b63c815cdd1625876dadb2efaf77edbe82984be93e55e","75ecef44f126e2ae018b4abbd85b6e8a2e2ba1638ebec56cc64274643ce3567b","f30bb836526d930a74593f7b0f5c1c46d10856415a8f69e5e2fc3db80371e362","14b5aa23c5d0ae1907bc696ac7b6915d88f7d85799cc0dc2dcf98fbce2c5a67c","5c439dafdc09abe4d6c260a96b822fa0ba5be7203c71a63ab1f1423cd9e838ea",{"version":"bae4ea23beb8397755b935cb84d3cdc6cdb0b1b4a329b90de9fc6c8774d71994","affectsGlobalScope":true},"cec36af22f514322f870e81d30675c78df82ae8bf4863f5fd4e4424c040c678d","df36874d9e56aff601e921c4b3971d37cf66d14f6455935ce821e6cad13b1823","d1c976fc225e71243d88b1f6c5d3d7598de2c020e3e5436a8863d42b949eef3b","1abb206a4ecd13b21536b677d7d5f66e0d7316f0d44610197cfcc5776f78884a","dbe5aa5a5dd8bd1c6a8d11b1310c3f0cdabaacc78a37b394a8c7b14faeb5fb84","2c828a5405191d006115ab34e191b8474bc6c86ffdc401d1a9864b1b6e088a58",{"version":"e8b18c6385ff784228a6f369694fcf1a6b475355ba89090a88de13587a9391d5","affectsGlobalScope":true},"d4ac44f01d42f541631c5fc88d0ed8efac29a3a3ad9a745d9fd58f8b61ed132e","7c013aa892414a7fdcfd861ae524a668eaa3ede8c7c0acafaf611948122c8d93","b68bd7bef90dab08b1866a9fee24f03d9fee10bcb3f587b074e96e61abf6d3f0","cb4f3f03480e1727eae46400606cecaa97f550186ff8fa909ebc00db4180531b",{"version":"b3624aed92dab6da8484280d3cb3e2f4130ec3f4ef3f8201c95144ae9e898bb6","affectsGlobalScope":true},"5153a2fd150e46ce57bb3f8db1318d33f6ad3261ed70ceeff92281c0608c74a3","d1a78a3c5708807e8de3e399f91df4797c62e44b02195eefc2209b2e713e54ee","36b03690b628eab08703d63f04eaa89c5df202e5f1edf3989f13ad389cd2c091","0effadd232a20498b11308058e334d3339cc5bf8c4c858393e38d9d4c0013dcf","25846d43937c672bab7e8195f3d881f93495df712ee901860effc109918938cc","556bf5c36deb62cffa1bf697c1789fe008ec82db0273025001db66732714e9d9","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff",{"version":"806ef4cac3b3d9fa4a48d849c8e084d7c72fcd7b16d76e06049a9ed742ff79c0","affectsGlobalScope":true},"44b8b584a338b190a59f4f6929d072431950c7bd92ec2694821c11bce180c8a5","23b89798789dffbd437c0c423f5d02d11f9736aea73d6abf16db4f812ff36eda","24ad30a03d6c9266b63540956868dd70fa2dc523d60d780d6586eb0c281946bc",{"version":"970a90f76d4d219ad60819d61f5994514087ba94c985647a3474a5a3d12714ed","affectsGlobalScope":true},"664d8f2d59164f2e08c543981453893bc7e003e4dfd29651ce09db13e9457980","4c8525f256873c7ba3135338c647eaf0ca7115a1a2805ae2d0056629461186ce","3c13ef48634e7b5012fcf7e8fce7496352c2d779a7201389ca96a2a81ee4314d","5d0a25ec910fa36595f85a67ac992d7a53dd4064a1ba6aea1c9f14ab73a023f2",{"version":"bfe39beb986d2a2e512c091cbe924f1c415bc65de54de0e2f6a0dc6f84c183d9","affectsGlobalScope":true},"2d526e6f21d8cc66ac11ada32874e95ae88d870c6c9d3d9d4e03b1d1f9ad7b8e","06d7c42d256f0ce6afe1b2b6cfbc97ab391f29dadb00dd0ae8e8f23f5bc916c3","ec4bd1b200670fb567920db572d6701ed42a9641d09c4ff6869768c8f81b404c","e59a892d87e72733e2a9ca21611b9beb52977be2696c7ba4b216cbbb9a48f5aa","d2ec52f565f0570e90b659811347bd689f8c6039b11eaaccd0f243759d46da6e","8a300fa9b698845a1f9c41ecbe2c5966634582a8e2020d51abcace9b55aa959e",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"ecd8eb2ed2ea3f7e17ae00a2ce61db2c199e6e3944f6ff4a02de85c1a98e38eb","763e521cf114b80e0dd0e21ca49b9f8ae62e8999555a5e7bade8ce36b33001c2","0d14fa22c41fdc7277e6f71473b20ebc07f40f00e38875142335d5b63cdfc9d2","032cbd1883827ca3728c1400145403b62e65b7b584a0d2115ae538c9edec7936","ffcc5500e77223169833fc6eb59b3a507944a1f89574e0a1276b0ea7fc22c4a4","22f13de9e2fe5f0f4724797abd3d34a1cdd6e47ef81fc4933fea3b8bf4ad524b","e3ba509d3dce019b3190ceb2f3fc88e2610ab717122dabd91a9efaa37804040d","cda0cb09b995489b7f4c57f168cd31b83dcbaa7aad49612734fb3c9c73f6e4f2","f72f8428f3c1caa22e9c247d046603b85b442c0dae7b77a7a0bc092c18867cb7",{"version":"195f63105abc03e72b6a176e3e34dfb5ac932b55db378fdc7874b1617e24b465","affectsGlobalScope":true}],"options":{"allowSyntheticDefaultImports":true,"declaration":true,"emitDecoratorMetadata":true,"esModuleInterop":true,"experimentalDecorators":true,"module":1,"outDir":"./","removeComments":true,"sourceMap":true,"strict":true,"strictBindCallApply":true,"strictFunctionTypes":true,"strictNullChecks":true,"strictPropertyInitialization":true,"target":7},"fileIdsList":[[114],[114,124],[114,126,129],[69,114],[72,114],[73,78,114],[74,84,85,92,102,113,114],[74,75,84,92,114],[76,114],[77,78,85,93,114],[78,102,110,114],[79,81,84,92,114],[80,114],[81,82,114],[83,84,114],[84,114],[84,85,86,102,113,114],[84,85,86,102,105,114],[114,118],[87,92,102,113,114],[84,85,87,88,92,102,110,113,114],[87,89,102,110,113,114],[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],[84,90,114],[91,113,114],[81,84,92,102,114],[93,114],[94,114],[72,95,114],[96,112,114,118],[97,114],[98,114],[84,99,100,114],[99,101,114,116],[84,102,103,104,105,114],[102,104,114],[102,103,114],[105,114],[106,114],[84,108,109,114],[108,109,114],[78,92,102,110,114],[111,114],[92,112,114],[73,87,98,113,114],[78,114],[102,114,115],[114,116],[114,117],[73,78,84,86,95,102,113,114,116,118],[102,114,119],[114,122,128],[114,126],[114,123,127],[114,125],[55,114],[55,64,65,66,114],[56,65,114],[55,57,60,61,63,65,67,114],[57,114],[56,57,59,61,62,114],[56,59,61,114],[55,56,57,59,114],[56,57,58,114],[55],[55,65],[65],[55,57,60,61,63,65,67],[57],[57,61],[61],[55,57]],"referencedMap":[[122,1],[125,2],[124,1],[58,1],[130,3],[69,4],[70,4],[72,5],[73,6],[74,7],[75,8],[76,9],[77,10],[78,11],[79,12],[80,13],[81,14],[82,14],[83,15],[84,16],[85,17],[86,18],[71,19],[120,1],[87,20],[88,21],[89,22],[121,23],[90,24],[91,25],[92,26],[93,27],[94,28],[95,29],[96,30],[97,31],[98,32],[99,33],[100,33],[101,34],[102,35],[104,36],[103,37],[105,38],[106,39],[107,1],[108,40],[109,41],[110,42],[111,43],[112,44],[113,45],[114,46],[115,47],[116,48],[117,49],[118,50],[119,51],[123,1],[129,52],[127,53],[128,54],[126,55],[11,1],[13,1],[12,1],[2,1],[14,1],[15,1],[16,1],[17,1],[18,1],[19,1],[20,1],[21,1],[3,1],[4,1],[25,1],[22,1],[23,1],[24,1],[26,1],[27,1],[28,1],[5,1],[29,1],[30,1],[31,1],[32,1],[6,1],[33,1],[34,1],[35,1],[36,1],[7,1],[37,1],[42,1],[43,1],[38,1],[39,1],[40,1],[41,1],[8,1],[47,1],[44,1],[45,1],[46,1],[48,1],[9,1],[49,1],[50,1],[51,1],[52,1],[53,1],[1,1],[10,1],[54,1],[64,1],[55,1],[56,56],[65,56],[67,57],[66,58],[68,59],[61,60],[63,61],[62,62],[57,56],[60,63],[59,64]],"exportedModulesMap":[[122,1],[125,2],[124,1],[58,1],[130,3],[69,4],[70,4],[72,5],[73,6],[74,7],[75,8],[76,9],[77,10],[78,11],[79,12],[80,13],[81,14],[82,14],[83,15],[84,16],[85,17],[86,18],[71,19],[120,1],[87,20],[88,21],[89,22],[121,23],[90,24],[91,25],[92,26],[93,27],[94,28],[95,29],[96,30],[97,31],[98,32],[99,33],[100,33],[101,34],[102,35],[104,36],[103,37],[105,38],[106,39],[107,1],[108,40],[109,41],[110,42],[111,43],[112,44],[113,45],[114,46],[115,47],[116,48],[117,49],[118,50],[119,51],[123,1],[129,52],[127,53],[128,54],[126,55],[11,1],[13,1],[12,1],[2,1],[14,1],[15,1],[16,1],[17,1],[18,1],[19,1],[20,1],[21,1],[3,1],[4,1],[25,1],[22,1],[23,1],[24,1],[26,1],[27,1],[28,1],[5,1],[29,1],[30,1],[31,1],[32,1],[6,1],[33,1],[34,1],[35,1],[36,1],[7,1],[37,1],[42,1],[43,1],[38,1],[39,1],[40,1],[41,1],[8,1],[47,1],[44,1],[45,1],[46,1],[48,1],[9,1],[49,1],[50,1],[51,1],[52,1],[53,1],[1,1],[10,1],[54,1],[64,1],[56,65],[65,65],[67,66],[66,67],[68,68],[61,69],[63,70],[62,71],[57,65],[60,72],[59,69]],"semanticDiagnosticsPerFile":[122,125,124,58,130,69,70,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,71,120,87,88,89,121,90,91,92,93,94,95,96,97,98,99,100,101,102,104,103,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,123,129,127,128,126,11,13,12,2,14,15,16,17,18,19,20,21,3,4,25,22,23,24,26,27,28,5,29,30,31,32,6,33,34,35,36,7,37,42,43,38,39,40,41,8,47,44,45,46,48,9,49,50,51,52,53,1,10,54,64,55,56,65,67,66,68,61,63,62,57,60,59]},"version":"4.8.4"}
|
package/package.json
CHANGED