@procore/globalization-toolkit 3.9.0 → 3.9.2
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/.yarn/install-state.gz +0 -0
- package/.yarnrc.yml +7 -0
- package/CHANGELOG.md +12 -0
- package/README.md +17 -13
- package/dist/FormatterUtils.js +4 -4
- package/dist/FormatterUtils.js.map +1 -1
- package/dist/dateTimes/DateTime.types.js.map +1 -1
- package/dist/dateTimes/DateTimeFormatter.js +8 -8
- package/dist/dateTimes/DateTimeFormatter.js.map +1 -1
- package/dist/dateTimes/DateTimeUtils.js +2 -3
- package/dist/dateTimes/DateTimeUtils.js.map +1 -1
- package/dist/generateSupportDocsURL/GenerateSupportDocsURL.js +2 -3
- package/dist/generateSupportDocsURL/GenerateSupportDocsURL.js.map +1 -1
- package/dist/getFallbackLocaleList/GetFallbackLocaleList.js +2 -2
- package/dist/getFallbackLocaleList/GetFallbackLocaleList.js.map +1 -1
- package/dist/getOverrideLocale/GetOverrideLocale.js +2 -2
- package/dist/getOverrideLocale/GetOverrideLocale.js.map +1 -1
- package/dist/getTranslationsFromLocale/GetTranslationsFromLocale.js +1 -2
- package/dist/getTranslationsFromLocale/GetTranslationsFromLocale.js.map +1 -1
- package/dist/lib/CoreNumberFormatter.js +32 -4
- package/dist/lib/CoreNumberFormatter.js.map +1 -1
- package/dist/mapLocaleToTmsSupportedLocale/mapLocaleToTmsSupportedLocale.js +1 -2
- package/dist/mapLocaleToTmsSupportedLocale/mapLocaleToTmsSupportedLocale.js.map +1 -1
- package/dist/numbers/CurrencyFormatter.js +7 -7
- package/dist/numbers/CurrencyFormatter.js.map +1 -1
- package/dist/numbers/CurrencyUtils.js +6 -7
- package/dist/numbers/CurrencyUtils.js.map +1 -1
- package/dist/numbers/NumberFormatter.js +5 -5
- package/dist/numbers/NumberFormatter.js.map +1 -1
- package/dist/numbers/NumberUtils.js +18 -18
- package/dist/numbers/NumberUtils.js.map +1 -1
- package/dist/sortByLocale/SortByLocale.js +1 -2
- package/dist/sortByLocale/SortByLocale.js.map +1 -1
- package/dist/test/TestBuilder.js.map +1 -1
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +11 -1
|
Binary file
|
package/.yarnrc.yml
ADDED
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @procore/globalization-toolkit
|
|
2
2
|
|
|
3
|
+
## 3.9.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Upgrade yarn to yarn 4
|
|
8
|
+
|
|
9
|
+
## 3.9.1
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- 51cc99a: Fix `nb-NO` currency formatting to place the symbol/ISO code before the amount. `parseCurrency` still accepts both layouts.
|
|
14
|
+
|
|
3
15
|
## 3.9.0
|
|
4
16
|
|
|
5
17
|
### Minor Changes
|
package/README.md
CHANGED
|
@@ -532,25 +532,28 @@ The GTK implementation relies heavily on [Intl](https://developer.mozilla.org/en
|
|
|
532
532
|
____
|
|
533
533
|
# Developing
|
|
534
534
|
|
|
535
|
-
|
|
535
|
+
Yarn is provided by [Corepack][corepack] (bundled with Node), not asdf. Use Node 18.12+ locally (CI uses the version in `.tool-versions`).
|
|
536
|
+
|
|
537
|
+
Install the toolchain and dependencies:
|
|
536
538
|
|
|
537
539
|
```sh
|
|
538
|
-
$
|
|
540
|
+
$ corepack enable
|
|
541
|
+
$ yarn install
|
|
539
542
|
```
|
|
540
543
|
|
|
541
544
|
Prepare project:
|
|
542
545
|
|
|
543
546
|
```sh
|
|
544
|
-
$
|
|
547
|
+
$ yarn prepare
|
|
545
548
|
```
|
|
546
549
|
|
|
547
550
|
Compile Typescript:
|
|
548
551
|
|
|
549
552
|
```sh
|
|
550
|
-
$
|
|
553
|
+
$ yarn build
|
|
551
554
|
```
|
|
552
555
|
|
|
553
|
-
(Delete build `
|
|
556
|
+
(Delete build `yarn clean`)
|
|
554
557
|
|
|
555
558
|
## Add new locale
|
|
556
559
|
|
|
@@ -615,21 +618,21 @@ Note: Make sure the new locale follows the industry standard format of `<languag
|
|
|
615
618
|
## Testing
|
|
616
619
|
|
|
617
620
|
```sh
|
|
618
|
-
$
|
|
621
|
+
$ yarn test
|
|
619
622
|
```
|
|
620
623
|
|
|
621
624
|
If adding a new supported export (or removing one in a breaking change), update the snapshot test output and commit the change.
|
|
622
625
|
|
|
623
626
|
```sh
|
|
624
|
-
$
|
|
627
|
+
$ yarn test -u
|
|
625
628
|
```
|
|
626
629
|
|
|
627
|
-
To check formatting run `
|
|
630
|
+
To check formatting run `yarn lint:check` and `yarn format:check`.
|
|
628
631
|
|
|
629
632
|
To check dependencies run
|
|
630
633
|
|
|
631
634
|
```sh
|
|
632
|
-
$
|
|
635
|
+
$ yarn depcheck
|
|
633
636
|
```
|
|
634
637
|
|
|
635
638
|
# Documentation
|
|
@@ -640,19 +643,19 @@ Once you generate the updated documentation, you can navigate it locally by open
|
|
|
640
643
|
To generate updated documentation run:
|
|
641
644
|
|
|
642
645
|
```sh
|
|
643
|
-
$
|
|
646
|
+
$ yarn typedoc
|
|
644
647
|
```
|
|
645
648
|
|
|
646
649
|
## Versioning and Publishing
|
|
647
650
|
|
|
648
651
|
We use [`changesets`][changesets] to manage releases, and encourage you to include a changeset with each commit or pull request.
|
|
649
652
|
|
|
650
|
-
To create a changeset run `
|
|
653
|
+
To create a changeset run `yarn changeset` and follow the prompt instructions.
|
|
651
654
|
|
|
652
655
|
To publish a release with changes:
|
|
653
656
|
|
|
654
657
|
- Create new branch (e.g., `git checkout -b chore/release`).
|
|
655
|
-
- Run `
|
|
658
|
+
- Run `yarn changeset version` to create a release containing all changes. This command will update the version of GTK, as well update the `CHANGELOG.md` file.
|
|
656
659
|
- Commit the changes (e.g., `git commit -m "chore: release"`).
|
|
657
660
|
- Create a pull request. `git push -u origin HEAD`, and then create pull request in the web UI.
|
|
658
661
|
- Once the pull request is merged to `main` the updated packages will be published to npm once the CI pipeline is completed.
|
|
@@ -674,4 +677,5 @@ Procore - building the software that builds the world.
|
|
|
674
677
|
Learn more about the #1 most widely used construction management software at [procore.com](https://www.procore.com/)
|
|
675
678
|
|
|
676
679
|
|
|
677
|
-
[changesets]: https://github.com/changesets/changesets
|
|
680
|
+
[changesets]: https://github.com/changesets/changesets
|
|
681
|
+
[corepack]: https://nodejs.org/api/corepack.html/
|
package/dist/FormatterUtils.js
CHANGED
|
@@ -1,6 +1,9 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
3
|
+
exports.sanitizeLocale = void 0;
|
|
4
|
+
exports.validateLocale = validateLocale;
|
|
5
|
+
exports.getINTLCompatibleLocale = getINTLCompatibleLocale;
|
|
6
|
+
exports.escapeRegEx = escapeRegEx;
|
|
4
7
|
const Formatter_types_1 = require("./Formatter.types");
|
|
5
8
|
const GetOverrideLocale_1 = require("./getOverrideLocale/GetOverrideLocale");
|
|
6
9
|
const sanitizeLocale = (locale) => {
|
|
@@ -29,7 +32,6 @@ function validateLocale(locale) {
|
|
|
29
32
|
throw new Error(warnMessage);
|
|
30
33
|
}
|
|
31
34
|
}
|
|
32
|
-
exports.validateLocale = validateLocale;
|
|
33
35
|
function getINTLCompatibleLocale(locale) {
|
|
34
36
|
try {
|
|
35
37
|
return validateLocale(locale);
|
|
@@ -39,9 +41,7 @@ function getINTLCompatibleLocale(locale) {
|
|
|
39
41
|
return overrideLocale === Formatter_types_1.DEFAULT_LOCALE ? "en-US" : overrideLocale;
|
|
40
42
|
}
|
|
41
43
|
}
|
|
42
|
-
exports.getINTLCompatibleLocale = getINTLCompatibleLocale;
|
|
43
44
|
function escapeRegEx(value) {
|
|
44
45
|
return value.replace(/[-\/\\^$*+?.()|[\]{}]/g, "\\$&");
|
|
45
46
|
}
|
|
46
|
-
exports.escapeRegEx = escapeRegEx;
|
|
47
47
|
//# sourceMappingURL=FormatterUtils.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"FormatterUtils.js","sourceRoot":"","sources":["../src/FormatterUtils.ts"],"names":[],"mappings":";;;
|
|
1
|
+
{"version":3,"file":"FormatterUtils.js","sourceRoot":"","sources":["../src/FormatterUtils.ts"],"names":[],"mappings":";;;AA6BA,wCAUC;AAED,0DASC;AAED,kCAEC;AAtDD,uDAA0E;AAC1E,6EAA0E;AAcnE,MAAM,cAAc,GAAG,CAAC,MAAc,EAAU,EAAE;IACvD,QAAQ,MAAM,EAAE,CAAC;QACf,KAAK,QAAQ,CAAC;QACd,KAAK,gCAAc;YACjB,OAAO,OAAO,CAAC;QACjB,KAAK,kBAAkB;YACrB,OAAO,OAAO,CAAC;QACjB,KAAK,IAAI;YACP,OAAO,QAAQ,CAAC;QAClB;YACE,OAAO,MAAM,CAAC;IAClB,CAAC;AACH,CAAC,CAAC;AAZW,QAAA,cAAc,kBAYzB;AAEF,SAAgB,cAAc,CAAC,MAAc;IAC3C,IAAI,CAAC;QACH,MAAM,eAAe,GAAG,IAAA,sBAAc,EAAC,MAAM,CAAC,CAAC;QAC/C,IAAI,IAAI,CAAC,YAAY,CAAC,eAAe,CAAC,CAAC;QACvC,OAAO,eAAe,CAAC;IACzB,CAAC;IAAC,WAAM,CAAC;QACP,MAAM,WAAW,GAAG,mCAAmC,MAAM,yCAAyC,CAAC;QACvG,OAAO,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC;QAC1B,MAAM,IAAI,KAAK,CAAC,WAAW,CAAC,CAAC;IAC/B,CAAC;AACH,CAAC;AAED,SAAgB,uBAAuB,CACrC,MAAc;IAEd,IAAI,CAAC;QACH,OAAO,cAAc,CAAC,MAAM,CAAC,CAAC;IAChC,CAAC;IAAC,WAAM,CAAC;QACP,MAAM,cAAc,GAAG,IAAA,qCAAiB,EAAC,MAAM,CAAC,CAAC;QACjD,OAAO,cAAc,KAAK,gCAAc,CAAC,CAAC,CAAC,OAAO,CAAC,CAAC,CAAC,cAAc,CAAC;IACtE,CAAC;AACH,CAAC;AAED,SAAgB,WAAW,CAAC,KAAa;IACvC,OAAO,KAAK,CAAC,OAAO,CAAC,wBAAwB,EAAE,MAAM,CAAC,CAAC;AACzD,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"DateTime.types.js","sourceRoot":"","sources":["../../src/dateTimes/DateTime.types.ts"],"names":[],"mappings":";;;AAEa,QAAA,aAAa,GAAG;IAC3B,IAAI,EAAE,MAAM;IACZ,IAAI,EAAE,MAAM;IACZ,MAAM,EAAE,QAAQ;IAChB,KAAK,EAAE,OAAO;CACN,CAAC;AAGE,QAAA,YAAY,GAAG;IAC1B,IAAI,EAAE,MAAM;IACZ,KAAK,EAAE,OAAO;CACN,CAAC;AAGE,QAAA,eAAe,GAAG;IAC7B,OAAO,EAAE,SAAS;IAClB,SAAS,EAAE,SAAS;CACZ,CAAC;AAIE,QAAA,SAAS,GAAG,qBAAa,CAAC;AAG1B,QAAA,SAAS,GAAG,qBAAa,CAAC;AAG1B,QAAA,OAAO,GAAG;IACrB,IAAI,EAAE,MAAM;IACZ,KAAK,EAAE,OAAO;IACd,MAAM,EAAE,QAAQ;CACR,CAAC;AAGE,QAAA,IAAI,GAAG,uBAAe,CAAC;AAGvB,QAAA,KAAK,GAAG;IACnB,OAAO,EAAE,SAAS;IAClB,SAAS,EAAE,SAAS;IACpB,IAAI,EAAE,MAAM;IACZ,KAAK,EAAE,OAAO;IACd,MAAM,EAAE,QAAQ;CACR,CAAC;AAGE,QAAA,GAAG,GAAG,uBAAe,CAAC;AAGtB,QAAA,IAAI,GAAG,uBAAe,CAAC;AAGvB,QAAA,MAAM,GAAG,uBAAe,CAAC;AAGzB,QAAA,MAAM,GAAG,uBAAe,CAAC;
|
|
1
|
+
{"version":3,"file":"DateTime.types.js","sourceRoot":"","sources":["../../src/dateTimes/DateTime.types.ts"],"names":[],"mappings":";;;AAEa,QAAA,aAAa,GAAG;IAC3B,IAAI,EAAE,MAAM;IACZ,IAAI,EAAE,MAAM;IACZ,MAAM,EAAE,QAAQ;IAChB,KAAK,EAAE,OAAO;CACN,CAAC;AAGE,QAAA,YAAY,GAAG;IAC1B,IAAI,EAAE,MAAM;IACZ,KAAK,EAAE,OAAO;CACN,CAAC;AAGE,QAAA,eAAe,GAAG;IAC7B,OAAO,EAAE,SAAS;IAClB,SAAS,EAAE,SAAS;CACZ,CAAC;AAIE,QAAA,SAAS,GAAG,qBAAa,CAAC;AAG1B,QAAA,SAAS,GAAG,qBAAa,CAAC;AAG1B,QAAA,OAAO,GAAG;IACrB,IAAI,EAAE,MAAM;IACZ,KAAK,EAAE,OAAO;IACd,MAAM,EAAE,QAAQ;CACR,CAAC;AAGE,QAAA,IAAI,GAAG,uBAAe,CAAC;AAGvB,QAAA,KAAK,GAAG;IACnB,OAAO,EAAE,SAAS;IAClB,SAAS,EAAE,SAAS;IACpB,IAAI,EAAE,MAAM;IACZ,KAAK,EAAE,OAAO;IACd,MAAM,EAAE,QAAQ;CACR,CAAC;AAGE,QAAA,GAAG,GAAG,uBAAe,CAAC;AAGtB,QAAA,IAAI,GAAG,uBAAe,CAAC;AAGvB,QAAA,MAAM,GAAG,uBAAe,CAAC;AAGzB,QAAA,MAAM,GAAG,uBAAe,CAAC;AAiIzB,QAAA,cAAc,GAAG;IAC5B,QAAQ;IACR,QAAQ;IACR,MAAM;IACN,KAAK;IACL,OAAO;IACP,MAAM;IACN,OAAO;IACP,SAAS;CACD,CAAC"}
|
|
@@ -1,6 +1,13 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
3
|
+
exports.DateTimeFormatter = void 0;
|
|
4
|
+
exports.formatDateTime = formatDateTime;
|
|
5
|
+
exports.formatDateTimeToParts = formatDateTimeToParts;
|
|
6
|
+
exports.formatDateTimeToLocalISOString = formatDateTimeToLocalISOString;
|
|
7
|
+
exports.getStartDayOfTheWeek = getStartDayOfTheWeek;
|
|
8
|
+
exports.getDatePartsWithPlaceholders = getDatePartsWithPlaceholders;
|
|
9
|
+
exports.getDatePlaceholder = getDatePlaceholder;
|
|
10
|
+
exports.formatRelativeTime = formatRelativeTime;
|
|
4
11
|
const weekstart_1 = require("weekstart");
|
|
5
12
|
const DateTime_types_1 = require("./DateTime.types");
|
|
6
13
|
const DateTimeUtils_1 = require("./DateTimeUtils");
|
|
@@ -93,22 +100,18 @@ function formatDateTime(value, dateTimeOptions) {
|
|
|
93
100
|
const formatter = new DateTimeFormatter(dateTimeOptions);
|
|
94
101
|
return formatter.formatDateTime(value);
|
|
95
102
|
}
|
|
96
|
-
exports.formatDateTime = formatDateTime;
|
|
97
103
|
function formatDateTimeToParts(value, dateTimeOptions) {
|
|
98
104
|
const formatter = new DateTimeFormatter(dateTimeOptions);
|
|
99
105
|
return formatter.formatDateTimeToParts(value);
|
|
100
106
|
}
|
|
101
|
-
exports.formatDateTimeToParts = formatDateTimeToParts;
|
|
102
107
|
function formatDateTimeToLocalISOString(value, dateTimeOptions) {
|
|
103
108
|
const formatter = new DateTimeFormatter(dateTimeOptions);
|
|
104
109
|
return formatter.formatDateTimeToLocalISOString(value);
|
|
105
110
|
}
|
|
106
|
-
exports.formatDateTimeToLocalISOString = formatDateTimeToLocalISOString;
|
|
107
111
|
function getStartDayOfTheWeek(locale) {
|
|
108
112
|
const formatter = new DateTimeFormatter({ locale });
|
|
109
113
|
return formatter.getStartDayOfTheWeek();
|
|
110
114
|
}
|
|
111
|
-
exports.getStartDayOfTheWeek = getStartDayOfTheWeek;
|
|
112
115
|
function getDatePartsWithPlaceholders(locale, dateLabels) {
|
|
113
116
|
const dateTimeOptions = {
|
|
114
117
|
locale,
|
|
@@ -133,15 +136,12 @@ function getDatePartsWithPlaceholders(locale, dateLabels) {
|
|
|
133
136
|
});
|
|
134
137
|
return parts;
|
|
135
138
|
}
|
|
136
|
-
exports.getDatePartsWithPlaceholders = getDatePartsWithPlaceholders;
|
|
137
139
|
function getDatePlaceholder(locale, dateLabels) {
|
|
138
140
|
const parts = getDatePartsWithPlaceholders(locale, dateLabels);
|
|
139
141
|
return parts.reduce((acc, curr) => acc + curr.value, "");
|
|
140
142
|
}
|
|
141
|
-
exports.getDatePlaceholder = getDatePlaceholder;
|
|
142
143
|
function formatRelativeTime(locale, relativeTimeOptions) {
|
|
143
144
|
const formatter = new DateTimeFormatter({ locale });
|
|
144
145
|
return formatter.formatRelativeTime(relativeTimeOptions);
|
|
145
146
|
}
|
|
146
|
-
exports.formatRelativeTime = formatRelativeTime;
|
|
147
147
|
//# sourceMappingURL=DateTimeFormatter.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"DateTimeFormatter.js","sourceRoot":"","sources":["../../src/dateTimes/DateTimeFormatter.ts"],"names":[],"mappings":";;;
|
|
1
|
+
{"version":3,"file":"DateTimeFormatter.js","sourceRoot":"","sources":["../../src/dateTimes/DateTimeFormatter.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
3
|
+
exports.getDateTimeFormatter = getDateTimeFormatter;
|
|
4
|
+
exports.transformOptions = transformOptions;
|
|
4
5
|
const FormatterUtils_1 = require("../FormatterUtils");
|
|
5
6
|
function getDateTimeFormatter(dateTimeOptions) {
|
|
6
7
|
const locale = (0, FormatterUtils_1.getINTLCompatibleLocale)(dateTimeOptions.locale);
|
|
7
8
|
const dateTimeFormatOptions = exports.transformOptions(dateTimeOptions);
|
|
8
9
|
return new Intl.DateTimeFormat(locale, dateTimeFormatOptions);
|
|
9
10
|
}
|
|
10
|
-
exports.getDateTimeFormatter = getDateTimeFormatter;
|
|
11
11
|
function transformOptions(dateTimeOptions) {
|
|
12
12
|
const dateTimeFormatOptions = {};
|
|
13
13
|
dateTimeFormatOptions.timeZone = dateTimeOptions.timeZone;
|
|
@@ -24,5 +24,4 @@ function transformOptions(dateTimeOptions) {
|
|
|
24
24
|
dateTimeFormatOptions.second = dateTimeOptions.second;
|
|
25
25
|
return dateTimeFormatOptions;
|
|
26
26
|
}
|
|
27
|
-
exports.transformOptions = transformOptions;
|
|
28
27
|
//# sourceMappingURL=DateTimeUtils.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"DateTimeUtils.js","sourceRoot":"","sources":["../../src/dateTimes/DateTimeUtils.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"DateTimeUtils.js","sourceRoot":"","sources":["../../src/dateTimes/DateTimeUtils.ts"],"names":[],"mappings":";;AAGA,oDAQC;AAED,4CAmBC;AAhCD,sDAA4D;AAG5D,SAAgB,oBAAoB,CAClC,eAAgC;IAEhC,MAAM,MAAM,GAAG,IAAA,wCAAuB,EAAC,eAAe,CAAC,MAAM,CAAC,CAAC;IAE/D,MAAM,qBAAqB,GAAG,OAAO,CAAC,gBAAgB,CAAC,eAAe,CAAC,CAAC;IAExE,OAAO,IAAI,IAAI,CAAC,cAAc,CAAC,MAAM,EAAE,qBAAqB,CAAC,CAAC;AAChE,CAAC;AAED,SAAgB,gBAAgB,CAC9B,eAAgC;IAEhC,MAAM,qBAAqB,GAA+B,EAAE,CAAC;IAE7D,qBAAqB,CAAC,QAAQ,GAAG,eAAe,CAAC,QAAQ,CAAC;IAC1D,qBAAqB,CAAC,YAAY,GAAG,eAAe,CAAC,YAAY,CAAC;IAClE,qBAAqB,CAAC,MAAM,GAAG,eAAe,CAAC,MAAM,CAAC;IACtD,qBAAqB,CAAC,SAAS,GAAG,eAAe,CAAC,SAAS,CAAC;IAC5D,qBAAqB,CAAC,SAAS,GAAG,eAAe,CAAC,SAAS,CAAC;IAC5D,qBAAqB,CAAC,OAAO,GAAG,eAAe,CAAC,OAAO,CAAC;IACxD,qBAAqB,CAAC,IAAI,GAAG,eAAe,CAAC,IAAI,CAAC;IAClD,qBAAqB,CAAC,KAAK,GAAG,eAAe,CAAC,KAAK,CAAC;IACpD,qBAAqB,CAAC,GAAG,GAAG,eAAe,CAAC,GAAG,CAAC;IAChD,qBAAqB,CAAC,IAAI,GAAG,eAAe,CAAC,IAAI,CAAC;IAClD,qBAAqB,CAAC,MAAM,GAAG,eAAe,CAAC,MAAM,CAAC;IACtD,qBAAqB,CAAC,MAAM,GAAG,eAAe,CAAC,MAAM,CAAC;IAEtD,OAAO,qBAAqB,CAAC;AAC/B,CAAC"}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
3
|
+
exports.getSupportDocsBaseURL = getSupportDocsBaseURL;
|
|
4
|
+
exports.generateSupportDocsURL = generateSupportDocsURL;
|
|
4
5
|
const Formatter_types_1 = require("../Formatter.types");
|
|
5
6
|
const LOCALE_URL_PREFIX_MAP = new Map([
|
|
6
7
|
["de-DE", "de"],
|
|
@@ -21,7 +22,6 @@ function getSupportDocsBaseURL(locale = Formatter_types_1.DEFAULT_LOCALE) {
|
|
|
21
22
|
? `https://${prefix}.support.procore.com`
|
|
22
23
|
: "https://support.procore.com";
|
|
23
24
|
}
|
|
24
|
-
exports.getSupportDocsBaseURL = getSupportDocsBaseURL;
|
|
25
25
|
function generateSupportDocsURL(url, locale) {
|
|
26
26
|
const baseURL = getSupportDocsBaseURL(locale);
|
|
27
27
|
try {
|
|
@@ -33,5 +33,4 @@ function generateSupportDocsURL(url, locale) {
|
|
|
33
33
|
}
|
|
34
34
|
return url.startsWith("/") ? `${baseURL}${url}` : `${baseURL}/${url}`;
|
|
35
35
|
}
|
|
36
|
-
exports.generateSupportDocsURL = generateSupportDocsURL;
|
|
37
36
|
//# sourceMappingURL=GenerateSupportDocsURL.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"GenerateSupportDocsURL.js","sourceRoot":"","sources":["../../src/generateSupportDocsURL/GenerateSupportDocsURL.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"GenerateSupportDocsURL.js","sourceRoot":"","sources":["../../src/generateSupportDocsURL/GenerateSupportDocsURL.ts"],"names":[],"mappings":";;AAsCA,sDAOC;AAQD,wDAeC;AApED,wDAI4B;AAS5B,MAAM,qBAAqB,GAAmC,IAAI,GAAG,CAAC;IACpE,CAAC,OAAO,EAAE,IAAI,CAAC;IACf,CAAC,OAAO,EAAE,OAAO,CAAC;IAClB,CAAC,OAAO,EAAE,OAAO,CAAC;IAClB,CAAC,OAAO,EAAE,OAAO,CAAC;IAClB,CAAC,IAAI,EAAE,IAAI,CAAC;IACZ,CAAC,OAAO,EAAE,OAAO,CAAC;IAClB,CAAC,OAAO,EAAE,OAAO,CAAC;IAClB,CAAC,OAAO,EAAE,IAAI,CAAC;IACf,CAAC,OAAO,EAAE,OAAO,CAAC;IAClB,CAAC,OAAO,EAAE,OAAO,CAAC;IAClB,CAAC,OAAO,EAAE,OAAO,CAAC;CACnB,CAAC,CAAC;AAaH,SAAgB,qBAAqB,CACnC,SAA6B,gCAAc;IAE3C,MAAM,MAAM,GAAG,qBAAqB,CAAC,GAAG,CAAC,MAAM,CAAC,CAAC;IACjD,OAAO,MAAM;QACX,CAAC,CAAC,WAAW,MAAM,sBAAsB;QACzC,CAAC,CAAC,6BAA6B,CAAC;AACpC,CAAC;AAQD,SAAgB,sBAAsB,CACpC,GAAW,EACX,MAA0B;IAE1B,MAAM,OAAO,GAAG,qBAAqB,CAAC,MAAM,CAAC,CAAC;IAE9C,IAAI,CAAC;QACH,MAAM,MAAM,GAAG,IAAI,GAAG,CAAC,GAAG,CAAC,CAAC;QAC5B,OAAO,GAAG,OAAO,GAAG,MAAM,CAAC,QAAQ,GAAG,MAAM,CAAC,MAAM,EAAE,CAAC;IACxD,CAAC;IAAC,WAAM,CAAC;QAEP,OAAO,CAAC,KAAK,CAAC,wBAAwB,GAAG,EAAE,CAAC,CAAC;IAC/C,CAAC;IAED,OAAO,GAAG,CAAC,UAAU,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,OAAO,GAAG,GAAG,EAAE,CAAC,CAAC,CAAC,GAAG,OAAO,IAAI,GAAG,EAAE,CAAC;AACxE,CAAC"}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
3
|
+
exports.FALLBACK_LOCALE_MAP = void 0;
|
|
4
|
+
exports.getFallbackLocaleList = getFallbackLocaleList;
|
|
4
5
|
const Formatter_types_1 = require("../Formatter.types");
|
|
5
6
|
const mapLocaleToTmsSupportedLocale_1 = require("../mapLocaleToTmsSupportedLocale/mapLocaleToTmsSupportedLocale");
|
|
6
7
|
exports.FALLBACK_LOCALE_MAP = {
|
|
@@ -17,5 +18,4 @@ function getFallbackLocaleList(envLocale = Formatter_types_1.DEFAULT_LOCALE) {
|
|
|
17
18
|
}
|
|
18
19
|
return [validLocale, Formatter_types_1.DEFAULT_LOCALE];
|
|
19
20
|
}
|
|
20
|
-
exports.getFallbackLocaleList = getFallbackLocaleList;
|
|
21
21
|
//# sourceMappingURL=GetFallbackLocaleList.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"GetFallbackLocaleList.js","sourceRoot":"","sources":["../../src/getFallbackLocaleList/GetFallbackLocaleList.ts"],"names":[],"mappings":";;;
|
|
1
|
+
{"version":3,"file":"GetFallbackLocaleList.js","sourceRoot":"","sources":["../../src/getFallbackLocaleList/GetFallbackLocaleList.ts"],"names":[],"mappings":";;;AAoBA,sDAeC;AAnCD,wDAI4B;AAC5B,kHAA+G;AAKlG,QAAA,mBAAmB,GAAuC;IACrE,OAAO,EAAE,IAAI;IACb,OAAO,EAAE,OAAO;CACjB,CAAC;AAOF,SAAgB,qBAAqB,CACnC,YAAuB,gCAAc;IAGrC,MAAM,WAAW,GAAG,IAAA,6DAA6B,EAAC,SAAS,CAAC,CAAC;IAE7D,IAAI,WAAW,KAAK,gCAAc,EAAE,CAAC;QACnC,OAAO,CAAC,gCAAc,CAAC,CAAC;IAC1B,CAAC;IAED,IAAI,2BAAmB,CAAC,WAAW,CAAC,EAAE,CAAC;QACrC,OAAO,CAAC,WAAW,EAAE,2BAAmB,CAAC,WAAW,CAAC,EAAE,gCAAc,CAAC,CAAC;IACzE,CAAC;IAED,OAAO,CAAC,WAAW,EAAE,gCAAc,CAAC,CAAC;AACvC,CAAC"}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
3
|
+
exports.OVERWRITE_LOCALE_MAP = void 0;
|
|
4
|
+
exports.getOverrideLocale = getOverrideLocale;
|
|
4
5
|
const Formatter_types_1 = require("../Formatter.types");
|
|
5
6
|
exports.OVERWRITE_LOCALE_MAP = {
|
|
6
7
|
"en-AE": "en-GB",
|
|
@@ -16,5 +17,4 @@ function getOverrideLocale(envLocale) {
|
|
|
16
17
|
}
|
|
17
18
|
return Formatter_types_1.DEFAULT_LOCALE;
|
|
18
19
|
}
|
|
19
|
-
exports.getOverrideLocale = getOverrideLocale;
|
|
20
20
|
//# sourceMappingURL=GetOverrideLocale.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"GetOverrideLocale.js","sourceRoot":"","sources":["../../src/getOverrideLocale/GetOverrideLocale.ts"],"names":[],"mappings":";;;
|
|
1
|
+
{"version":3,"file":"GetOverrideLocale.js","sourceRoot":"","sources":["../../src/getOverrideLocale/GetOverrideLocale.ts"],"names":[],"mappings":";;;AAwBA,8CAaC;AArCD,wDAK4B;AAOf,QAAA,oBAAoB,GAAuC;IACtE,OAAO,EAAE,OAAO;IAChB,OAAO,EAAE,OAAO;IAChB,QAAQ,EAAE,IAAI;CACN,CAAC;AAQX,SAAgB,iBAAiB,CAAC,SAAoB;IACpD,IACE,uCAAqB,CAAC,QAAQ,CAC5B,SAAmD,CACpD,EACD,CAAC;QACD,OAAO,SAA+B,CAAC;IACzC,CAAC;IACD,IAAI,4BAAoB,CAAC,SAAS,CAAC,EAAE,CAAC;QACpC,OAAO,4BAAoB,CAAC,SAAS,CAAC,CAAC;IACzC,CAAC;IAED,OAAO,gCAAc,CAAC;AACxB,CAAC"}
|
|
@@ -9,7 +9,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
9
9
|
});
|
|
10
10
|
};
|
|
11
11
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
|
-
exports.getTranslationsFromLocale =
|
|
12
|
+
exports.getTranslationsFromLocale = getTranslationsFromLocale;
|
|
13
13
|
const GetFallbackLocaleList_1 = require("../getFallbackLocaleList/GetFallbackLocaleList");
|
|
14
14
|
function getTranslationsFromLocale(envLocale, localeLoader) {
|
|
15
15
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -23,5 +23,4 @@ function getTranslationsFromLocale(envLocale, localeLoader) {
|
|
|
23
23
|
return translationsArray.reduce((acc, translations) => (Object.assign(Object.assign({}, acc), translations)), {});
|
|
24
24
|
});
|
|
25
25
|
}
|
|
26
|
-
exports.getTranslationsFromLocale = getTranslationsFromLocale;
|
|
27
26
|
//# sourceMappingURL=GetTranslationsFromLocale.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"GetTranslationsFromLocale.js","sourceRoot":"","sources":["../../src/getTranslationsFromLocale/GetTranslationsFromLocale.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"GetTranslationsFromLocale.js","sourceRoot":"","sources":["../../src/getTranslationsFromLocale/GetTranslationsFromLocale.ts"],"names":[],"mappings":";;;;;;;;;;;AAgBA,8DAoBC;AAnCD,0FAAuF;AAevF,SAAsB,yBAAyB,CAC7C,SAAgC,EAChC,YAAkE;;QAElE,MAAM,eAAe,GAAG,IAAA,6CAAqB,EAAC,SAAS,CAAC,CAAC;QACzD,MAAM,mBAAmB,GAAG,eAAe,CAAC,GAAG,CAC7C,CAAC,IAAI,EAAE,EAAE,CACP,YAAY,CAAC,IAAI,CAAC;aACf,IAAI,CAAC,CAAC,MAAM,EAAE,EAAE,CAAC,CAAC;YACjB,CAAC,IAAI,CAAC,EAAE,MAAM,CAAC,OAAO;SACvB,CAAC,CAAC;aACF,KAAK,CAAC,GAAG,EAAE,CAAC,CAAC,EAAE,CAAC,CAAC,CACvB,CAAC;QAEF,MAAM,iBAAiB,GAAG,MAAM,OAAO,CAAC,GAAG,CAAC,mBAAmB,CAAC,CAAC;QAEjE,OAAO,iBAAiB,CAAC,MAAM,CAC7B,CAAC,GAAG,EAAE,YAAY,EAAE,EAAE,CAAC,iCAAM,GAAG,GAAK,YAAY,EAAG,EACpD,EAAE,CACH,CAAC;IACJ,CAAC;CAAA"}
|
|
@@ -6,6 +6,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
6
6
|
exports.CoreNumberFormatter = void 0;
|
|
7
7
|
const Currency_types_1 = require("../numbers/Currency.types");
|
|
8
8
|
const currencySymbols_json_1 = __importDefault(require("./currencySymbols.json"));
|
|
9
|
+
const UNIT_FIRST_LOCALES = new Set(["nb"]);
|
|
9
10
|
class CoreNumberFormatter extends Intl.NumberFormat {
|
|
10
11
|
constructor(locales, options) {
|
|
11
12
|
super(locales, options);
|
|
@@ -14,12 +15,16 @@ class CoreNumberFormatter extends Intl.NumberFormat {
|
|
|
14
15
|
formatToParts(value) {
|
|
15
16
|
const currency = this.resolvedOptions().currency;
|
|
16
17
|
const currencyDisplay = this.resolvedOptions().currencyDisplay;
|
|
18
|
+
const locale = this.resolvedOptions().locale;
|
|
17
19
|
const symbol = this.currencySymbols.get(currency);
|
|
18
|
-
|
|
19
|
-
if (symbol
|
|
20
|
-
|
|
20
|
+
let parts = super.formatToParts(value);
|
|
21
|
+
if (symbol !== undefined && Currency_types_1.CurrencyDisplay.SYMBOL === currencyDisplay) {
|
|
22
|
+
parts = parts.map((part) => part.type === "currency" ? Object.assign(Object.assign({}, part), { value: symbol }) : part);
|
|
21
23
|
}
|
|
22
|
-
|
|
24
|
+
if (UNIT_FIRST_LOCALES.has(locale)) {
|
|
25
|
+
parts = moveCurrencyUnitBeforeAmount(parts);
|
|
26
|
+
}
|
|
27
|
+
return parts;
|
|
23
28
|
}
|
|
24
29
|
format(value) {
|
|
25
30
|
return this.formatToParts(value)
|
|
@@ -29,4 +34,27 @@ class CoreNumberFormatter extends Intl.NumberFormat {
|
|
|
29
34
|
}
|
|
30
35
|
}
|
|
31
36
|
exports.CoreNumberFormatter = CoreNumberFormatter;
|
|
37
|
+
function moveCurrencyUnitBeforeAmount(parts) {
|
|
38
|
+
var _a;
|
|
39
|
+
const currencyIndex = parts.findIndex((part) => part.type === "currency");
|
|
40
|
+
const firstDigitIndex = parts.findIndex((part) => part.type === "integer");
|
|
41
|
+
if (currencyIndex === -1 ||
|
|
42
|
+
firstDigitIndex === -1 ||
|
|
43
|
+
currencyIndex < firstDigitIndex) {
|
|
44
|
+
return parts;
|
|
45
|
+
}
|
|
46
|
+
const separatorIndex = currencyIndex - 1;
|
|
47
|
+
const separatorPart = parts[separatorIndex];
|
|
48
|
+
const hasWhitespaceSeparator = (separatorPart === null || separatorPart === void 0 ? void 0 : separatorPart.type) === "literal" && /^\s+$/.test(separatorPart.value);
|
|
49
|
+
const remainingParts = parts.filter((_, index) => index !== currencyIndex &&
|
|
50
|
+
!(hasWhitespaceSeparator && index === separatorIndex));
|
|
51
|
+
const insertAt = ((_a = remainingParts[0]) === null || _a === void 0 ? void 0 : _a.type) === "minusSign" ? 1 : 0;
|
|
52
|
+
const separatorValue = hasWhitespaceSeparator ? separatorPart.value : " ";
|
|
53
|
+
return [
|
|
54
|
+
...remainingParts.slice(0, insertAt),
|
|
55
|
+
parts[currencyIndex],
|
|
56
|
+
{ type: "literal", value: separatorValue },
|
|
57
|
+
...remainingParts.slice(insertAt),
|
|
58
|
+
];
|
|
59
|
+
}
|
|
32
60
|
//# sourceMappingURL=CoreNumberFormatter.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"CoreNumberFormatter.js","sourceRoot":"","sources":["../../src/lib/CoreNumberFormatter.ts"],"names":[],"mappings":";;;;;;AAAA,8DAA4D;AAC5D,kFAAyD;AAGzD,MAAa,mBAAoB,SAAQ,IAAI,CAAC,YAAY;IACxD,YAAY,OAA2B,EAAE,OAAkC;QACzE,KAAK,CAAC,OAAO,EAAE,OAAO,CAAC,CAAC;QAG1B,oBAAe,GAAG,IAAI,GAAG,CACvB,MAAM,CAAC,OAAO,CAAC,8BAAmB,CAAC,CACpC,CAAC;IAJF,CAAC;IAWD,aAAa,CAAC,KAAa;QACzB,MAAM,QAAQ,GAAW,IAAI,CAAC,eAAe,EAAE,CAAC,QAAS,CAAC;QAC1D,MAAM,eAAe,GAAG,IAAI,CAAC,eAAe,EAAE,CAAC,eAAgB,CAAC;QAChE,MAAM,MAAM,GAAG,IAAI,CAAC,eAAe,CAAC,GAAG,CAAC,QAAQ,CAAC,CAAC;QAElD,
|
|
1
|
+
{"version":3,"file":"CoreNumberFormatter.js","sourceRoot":"","sources":["../../src/lib/CoreNumberFormatter.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,10 +1,9 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.mapLocaleToTmsSupportedLocale =
|
|
3
|
+
exports.mapLocaleToTmsSupportedLocale = mapLocaleToTmsSupportedLocale;
|
|
4
4
|
const GetOverrideLocale_1 = require("../getOverrideLocale/GetOverrideLocale");
|
|
5
5
|
function mapLocaleToTmsSupportedLocale(locale) {
|
|
6
6
|
var _a;
|
|
7
7
|
return (_a = GetOverrideLocale_1.OVERWRITE_LOCALE_MAP[locale]) !== null && _a !== void 0 ? _a : locale;
|
|
8
8
|
}
|
|
9
|
-
exports.mapLocaleToTmsSupportedLocale = mapLocaleToTmsSupportedLocale;
|
|
10
9
|
//# sourceMappingURL=mapLocaleToTmsSupportedLocale.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"mapLocaleToTmsSupportedLocale.js","sourceRoot":"","sources":["../../src/mapLocaleToTmsSupportedLocale/mapLocaleToTmsSupportedLocale.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"mapLocaleToTmsSupportedLocale.js","sourceRoot":"","sources":["../../src/mapLocaleToTmsSupportedLocale/mapLocaleToTmsSupportedLocale.ts"],"names":[],"mappings":";;AAQA,sEAIC;AAXD,8EAA8E;AAO9E,SAAgB,6BAA6B,CAC3C,MAAiB;;IAEjB,OAAO,MAAA,wCAAoB,CAAC,MAAM,CAAC,mCAAI,MAAM,CAAC;AAChD,CAAC"}
|
|
@@ -1,6 +1,12 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
3
|
+
exports.CurrencyFormatter = void 0;
|
|
4
|
+
exports.formatCurrency = formatCurrency;
|
|
5
|
+
exports.formatCurrencyToParts = formatCurrencyToParts;
|
|
6
|
+
exports.parseCurrency = parseCurrency;
|
|
7
|
+
exports.getCurrencySeparators = getCurrencySeparators;
|
|
8
|
+
exports.getCurrencyPlaceholders = getCurrencyPlaceholders;
|
|
9
|
+
exports.getSupportedCurrencies = getSupportedCurrencies;
|
|
4
10
|
const FormatterUtils_1 = require("../FormatterUtils");
|
|
5
11
|
const CurrencyUtils_1 = require("./CurrencyUtils");
|
|
6
12
|
const NumberUtils_1 = require("./NumberUtils");
|
|
@@ -64,30 +70,24 @@ function formatCurrency(value, currencyOptions) {
|
|
|
64
70
|
const formatter = new CurrencyFormatter(currencyOptions);
|
|
65
71
|
return formatter.formatCurrency(value);
|
|
66
72
|
}
|
|
67
|
-
exports.formatCurrency = formatCurrency;
|
|
68
73
|
function formatCurrencyToParts(value, currencyOptions) {
|
|
69
74
|
const formatter = new CurrencyFormatter(currencyOptions);
|
|
70
75
|
return formatter.formatCurrencyToParts(value);
|
|
71
76
|
}
|
|
72
|
-
exports.formatCurrencyToParts = formatCurrencyToParts;
|
|
73
77
|
function parseCurrency(value, currencyOptions) {
|
|
74
78
|
const formatter = new CurrencyFormatter(currencyOptions);
|
|
75
79
|
return formatter.parseCurrency(value);
|
|
76
80
|
}
|
|
77
|
-
exports.parseCurrency = parseCurrency;
|
|
78
81
|
function getCurrencySeparators(currencyOptions) {
|
|
79
82
|
const formatter = new CurrencyFormatter(currencyOptions);
|
|
80
83
|
return formatter.getCurrencySeparators();
|
|
81
84
|
}
|
|
82
|
-
exports.getCurrencySeparators = getCurrencySeparators;
|
|
83
85
|
function getCurrencyPlaceholders(currencyOptions) {
|
|
84
86
|
const formatter = new CurrencyFormatter(currencyOptions);
|
|
85
87
|
return formatter.getCurrencyPlaceholders();
|
|
86
88
|
}
|
|
87
|
-
exports.getCurrencyPlaceholders = getCurrencyPlaceholders;
|
|
88
89
|
function getSupportedCurrencies(currencyOptions) {
|
|
89
90
|
const formatter = new CurrencyFormatter(currencyOptions);
|
|
90
91
|
return formatter.getSupportedCurrencies();
|
|
91
92
|
}
|
|
92
|
-
exports.getSupportedCurrencies = getSupportedCurrencies;
|
|
93
93
|
//# sourceMappingURL=CurrencyFormatter.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"CurrencyFormatter.js","sourceRoot":"","sources":["../../src/numbers/CurrencyFormatter.ts"],"names":[],"mappings":";;;
|
|
1
|
+
{"version":3,"file":"CurrencyFormatter.js","sourceRoot":"","sources":["../../src/numbers/CurrencyFormatter.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
3
|
+
exports.getCurrencyFormatter = getCurrencyFormatter;
|
|
4
|
+
exports.transformOptions = transformOptions;
|
|
5
|
+
exports.transformCurrencyOptions = transformCurrencyOptions;
|
|
6
|
+
exports.validateOptions = validateOptions;
|
|
7
|
+
exports.validateCurrencyOptions = validateCurrencyOptions;
|
|
8
|
+
exports.supportedCurrencies = supportedCurrencies;
|
|
4
9
|
const FormatterUtils_1 = require("../FormatterUtils");
|
|
5
10
|
const CoreNumberFormatter_1 = require("../lib/CoreNumberFormatter");
|
|
6
11
|
const SupportedCurrencies_1 = require("./SupportedCurrencies");
|
|
@@ -10,11 +15,9 @@ function getCurrencyFormatter(options) {
|
|
|
10
15
|
const intlOptions = exports.transformOptions(newOptions);
|
|
11
16
|
return new CoreNumberFormatter_1.CoreNumberFormatter(newOptions.locale, intlOptions);
|
|
12
17
|
}
|
|
13
|
-
exports.getCurrencyFormatter = getCurrencyFormatter;
|
|
14
18
|
function transformOptions(options) {
|
|
15
19
|
return Object.assign(Object.assign({}, (0, NumberUtils_1.transformNumberOptionsBasic)(options)), exports.transformCurrencyOptions(options));
|
|
16
20
|
}
|
|
17
|
-
exports.transformOptions = transformOptions;
|
|
18
21
|
function transformCurrencyOptions(options) {
|
|
19
22
|
const numberFormatOptions = {};
|
|
20
23
|
numberFormatOptions.style = "currency";
|
|
@@ -23,14 +26,12 @@ function transformCurrencyOptions(options) {
|
|
|
23
26
|
numberFormatOptions.currencySign = options.currencySign;
|
|
24
27
|
return numberFormatOptions;
|
|
25
28
|
}
|
|
26
|
-
exports.transformCurrencyOptions = transformCurrencyOptions;
|
|
27
29
|
function validateOptions(options) {
|
|
28
30
|
const updatedOptions = Object.assign(Object.assign({}, options), { locale: (0, FormatterUtils_1.getINTLCompatibleLocale)(options.locale) });
|
|
29
31
|
(0, NumberUtils_1.validateNumberOptionsBasic)(updatedOptions);
|
|
30
32
|
exports.validateCurrencyOptions(updatedOptions);
|
|
31
33
|
return updatedOptions;
|
|
32
34
|
}
|
|
33
|
-
exports.validateOptions = validateOptions;
|
|
34
35
|
function validateCurrencyOptions(currencyOptions) {
|
|
35
36
|
const alphabeticRegex = /^[a-z]*$/i;
|
|
36
37
|
if (currencyOptions.currencyIsoCode.length === 3 &&
|
|
@@ -41,7 +42,6 @@ function validateCurrencyOptions(currencyOptions) {
|
|
|
41
42
|
console.error(errorMessage);
|
|
42
43
|
throw new Error(errorMessage);
|
|
43
44
|
}
|
|
44
|
-
exports.validateCurrencyOptions = validateCurrencyOptions;
|
|
45
45
|
function supportedCurrencies() {
|
|
46
46
|
const currencyCodes = [
|
|
47
47
|
...Intl.supportedValuesOf("currency"),
|
|
@@ -49,5 +49,4 @@ function supportedCurrencies() {
|
|
|
49
49
|
];
|
|
50
50
|
return currencyCodes.filter((currency) => SupportedCurrencies_1.SupportedCurrencies.includes(currency));
|
|
51
51
|
}
|
|
52
|
-
exports.supportedCurrencies = supportedCurrencies;
|
|
53
52
|
//# sourceMappingURL=CurrencyUtils.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"CurrencyUtils.js","sourceRoot":"","sources":["../../src/numbers/CurrencyUtils.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"CurrencyUtils.js","sourceRoot":"","sources":["../../src/numbers/CurrencyUtils.ts"],"names":[],"mappings":";;AAYA,oDAOC;AAED,4CAOC;AAED,4DAWC;AAED,0CAUC;AAED,0DAaC;AAED,kDAQC;AA9ED,sDAA4D;AAC5D,oEAAiE;AAEjE,+DAG+B;AAC/B,+CAGuB;AAEvB,SAAgB,oBAAoB,CAClC,OAAwB;IAExB,MAAM,UAAU,GAAoB,OAAO,CAAC,eAAe,CAAC,OAAO,CAAC,CAAC;IACrE,MAAM,WAAW,GACf,OAAO,CAAC,gBAAgB,CAAC,UAAU,CAAC,CAAC;IACvC,OAAO,IAAI,yCAAmB,CAAC,UAAU,CAAC,MAAM,EAAE,WAAW,CAAC,CAAC;AACjE,CAAC;AAED,SAAgB,gBAAgB,CAC9B,OAAwB;IAExB,uCACK,IAAA,yCAA2B,EAAC,OAAO,CAAC,GACpC,OAAO,CAAC,wBAAwB,CAAC,OAAO,CAAC,EAC5C;AACJ,CAAC;AAED,SAAgB,wBAAwB,CACtC,OAAwB;IAExB,MAAM,mBAAmB,GAA6B,EAAE,CAAC;IAEzD,mBAAmB,CAAC,KAAK,GAAG,UAAU,CAAC;IACvC,mBAAmB,CAAC,QAAQ,GAAG,OAAO,CAAC,eAAe,CAAC;IACvD,mBAAmB,CAAC,eAAe,GAAG,OAAO,CAAC,eAAe,CAAC;IAC9D,mBAAmB,CAAC,YAAY,GAAG,OAAO,CAAC,YAAY,CAAC;IAExD,OAAO,mBAAmB,CAAC;AAC7B,CAAC;AAED,SAAgB,eAAe,CAAC,OAAwB;IACtD,MAAM,cAAc,mCACf,OAAO,KACV,MAAM,EAAE,IAAA,wCAAuB,EAAC,OAAO,CAAC,MAAM,CAAC,GAChD,CAAC;IAEF,IAAA,wCAA0B,EAAC,cAAc,CAAC,CAAC;IAC3C,OAAO,CAAC,uBAAuB,CAAC,cAAc,CAAC,CAAC;IAEhD,OAAO,cAAc,CAAC;AACxB,CAAC;AAED,SAAgB,uBAAuB,CACrC,eAAgC;IAEhC,MAAM,eAAe,GAAG,WAAW,CAAC;IACpC,IACE,eAAe,CAAC,eAAe,CAAC,MAAM,KAAK,CAAC;QAC5C,eAAe,CAAC,IAAI,CAAC,eAAe,CAAC,eAAe,CAAC,EACrD,CAAC;QACD,OAAO,eAAe,CAAC;IACzB,CAAC;IACD,MAAM,YAAY,GAAG,uEAAuE,eAAe,CAAC,eAAe,yCAAyC,CAAC;IACrK,OAAO,CAAC,KAAK,CAAC,YAAY,CAAC,CAAC;IAC5B,MAAM,IAAI,KAAK,CAAC,YAAY,CAAC,CAAC;AAChC,CAAC;AAED,SAAgB,mBAAmB;IACjC,MAAM,aAAa,GAAG;QACpB,GAAG,IAAI,CAAC,iBAAiB,CAAC,UAAU,CAAC;QACrC,GAAG,sDAAgC;KACpC,CAAC;IACF,OAAO,aAAa,CAAC,MAAM,CAAC,CAAC,QAAQ,EAAE,EAAE,CACvC,yCAAmB,CAAC,QAAQ,CAAC,QAAQ,CAAC,CACvC,CAAC;AACJ,CAAC"}
|
|
@@ -1,6 +1,10 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
3
|
+
exports.NumberFormatter = void 0;
|
|
4
|
+
exports.formatNumber = formatNumber;
|
|
5
|
+
exports.formatNumberToParts = formatNumberToParts;
|
|
6
|
+
exports.parseNumber = parseNumber;
|
|
7
|
+
exports.getNumberSeparators = getNumberSeparators;
|
|
4
8
|
const FormatterUtils_1 = require("../FormatterUtils");
|
|
5
9
|
const NumberUtils_1 = require("./NumberUtils");
|
|
6
10
|
const Number_types_1 = require("./Number.types");
|
|
@@ -43,20 +47,16 @@ function formatNumber(value, numberOptions) {
|
|
|
43
47
|
const formatter = new NumberFormatter(numberOptions);
|
|
44
48
|
return formatter.formatNumber(value);
|
|
45
49
|
}
|
|
46
|
-
exports.formatNumber = formatNumber;
|
|
47
50
|
function formatNumberToParts(value, numberOptions) {
|
|
48
51
|
const formatter = new NumberFormatter(numberOptions);
|
|
49
52
|
return formatter.formatNumberToParts(value);
|
|
50
53
|
}
|
|
51
|
-
exports.formatNumberToParts = formatNumberToParts;
|
|
52
54
|
function parseNumber(value, numberOptions) {
|
|
53
55
|
const formatter = new NumberFormatter(numberOptions);
|
|
54
56
|
return formatter.parseNumber(value);
|
|
55
57
|
}
|
|
56
|
-
exports.parseNumber = parseNumber;
|
|
57
58
|
function getNumberSeparators(locale) {
|
|
58
59
|
const formatter = new NumberFormatter({ locale });
|
|
59
60
|
return formatter.getNumberSeparators();
|
|
60
61
|
}
|
|
61
|
-
exports.getNumberSeparators = getNumberSeparators;
|
|
62
62
|
//# sourceMappingURL=NumberFormatter.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"NumberFormatter.js","sourceRoot":"","sources":["../../src/numbers/NumberFormatter.ts"],"names":[],"mappings":";;;
|
|
1
|
+
{"version":3,"file":"NumberFormatter.js","sourceRoot":"","sources":["../../src/numbers/NumberFormatter.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,6 +1,23 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
3
|
+
exports.MAXIMUM_PRECISE_DIGITS = void 0;
|
|
4
|
+
exports.getNumberFormatter = getNumberFormatter;
|
|
5
|
+
exports.transformOptions = transformOptions;
|
|
6
|
+
exports.transformNumberOptionsBasic = transformNumberOptionsBasic;
|
|
7
|
+
exports.transformNumberOptions = transformNumberOptions;
|
|
8
|
+
exports.transformPercentValue = transformPercentValue;
|
|
9
|
+
exports.validateOptions = validateOptions;
|
|
10
|
+
exports.validateNumberOptionsBasic = validateNumberOptionsBasic;
|
|
11
|
+
exports.validateFractionDigits = validateFractionDigits;
|
|
12
|
+
exports.validateFractionDigitValue = validateFractionDigitValue;
|
|
13
|
+
exports.validateNumberString = validateNumberString;
|
|
14
|
+
exports.getDecimalSeparator = getDecimalSeparator;
|
|
15
|
+
exports.fixDecimal = fixDecimal;
|
|
16
|
+
exports.trimZeros = trimZeros;
|
|
17
|
+
exports.padZeros = padZeros;
|
|
18
|
+
exports.isBigNumberString = isBigNumberString;
|
|
19
|
+
exports.formatBigNumber = formatBigNumber;
|
|
20
|
+
exports.formatNumberOrCurrency = formatNumberOrCurrency;
|
|
4
21
|
const big_js_1 = require("big.js");
|
|
5
22
|
const FormatterUtils_1 = require("../FormatterUtils");
|
|
6
23
|
const Number_types_1 = require("./Number.types");
|
|
@@ -10,11 +27,9 @@ function getNumberFormatter(options) {
|
|
|
10
27
|
const intlOptions = exports.transformOptions(newOptions);
|
|
11
28
|
return new Intl.NumberFormat(newOptions.locale, intlOptions);
|
|
12
29
|
}
|
|
13
|
-
exports.getNumberFormatter = getNumberFormatter;
|
|
14
30
|
function transformOptions(options) {
|
|
15
31
|
return Object.assign(Object.assign({}, exports.transformNumberOptionsBasic(options)), exports.transformNumberOptions(options));
|
|
16
32
|
}
|
|
17
|
-
exports.transformOptions = transformOptions;
|
|
18
33
|
function transformNumberOptionsBasic(options) {
|
|
19
34
|
const numberFormatOptions = {};
|
|
20
35
|
numberFormatOptions.minimumFractionDigits = options.minimumFractionDigits;
|
|
@@ -22,14 +37,12 @@ function transformNumberOptionsBasic(options) {
|
|
|
22
37
|
numberFormatOptions.notation = options.notation;
|
|
23
38
|
return numberFormatOptions;
|
|
24
39
|
}
|
|
25
|
-
exports.transformNumberOptionsBasic = transformNumberOptionsBasic;
|
|
26
40
|
function transformNumberOptions(options) {
|
|
27
41
|
const numberFormatOptions = {};
|
|
28
42
|
if (options.percent)
|
|
29
43
|
numberFormatOptions.style = "percent";
|
|
30
44
|
return numberFormatOptions;
|
|
31
45
|
}
|
|
32
|
-
exports.transformNumberOptions = transformNumberOptions;
|
|
33
46
|
function transformPercentValue(value, formatter, percent) {
|
|
34
47
|
var _a;
|
|
35
48
|
if (!percent || percent === Number_types_1.Percent.DECIMAL)
|
|
@@ -46,18 +59,15 @@ function transformPercentValue(value, formatter, percent) {
|
|
|
46
59
|
? fixed.replace(/\d+$/, trimZeros(fixed.split(".")[1], formatter.resolvedOptions().minimumFractionDigits))
|
|
47
60
|
: fixed;
|
|
48
61
|
}
|
|
49
|
-
exports.transformPercentValue = transformPercentValue;
|
|
50
62
|
function validateOptions(options) {
|
|
51
63
|
const updatedOptions = Object.assign(Object.assign({}, options), { locale: (0, FormatterUtils_1.getINTLCompatibleLocale)(options.locale) });
|
|
52
64
|
exports.validateNumberOptionsBasic(updatedOptions);
|
|
53
65
|
return updatedOptions;
|
|
54
66
|
}
|
|
55
|
-
exports.validateOptions = validateOptions;
|
|
56
67
|
function validateNumberOptionsBasic(options) {
|
|
57
68
|
exports.validateFractionDigits(options);
|
|
58
69
|
return options;
|
|
59
70
|
}
|
|
60
|
-
exports.validateNumberOptionsBasic = validateNumberOptionsBasic;
|
|
61
71
|
function validateFractionDigits(options) {
|
|
62
72
|
if (options.minimumFractionDigits) {
|
|
63
73
|
exports.validateFractionDigitValue(options.minimumFractionDigits, "minimum");
|
|
@@ -74,7 +84,6 @@ function validateFractionDigits(options) {
|
|
|
74
84
|
}
|
|
75
85
|
return options;
|
|
76
86
|
}
|
|
77
|
-
exports.validateFractionDigits = validateFractionDigits;
|
|
78
87
|
function validateFractionDigitValue(value, minMax) {
|
|
79
88
|
if (!(Number.isInteger(value) && value >= 0 && value <= 20)) {
|
|
80
89
|
const errorMessage = `@procore/globalization-toolkit Intl.NumberFormat error for ${minMax}FractionDigits ${value}. Possible values are integers from 0 to 20.`;
|
|
@@ -83,7 +92,6 @@ function validateFractionDigitValue(value, minMax) {
|
|
|
83
92
|
}
|
|
84
93
|
return value;
|
|
85
94
|
}
|
|
86
|
-
exports.validateFractionDigitValue = validateFractionDigitValue;
|
|
87
95
|
function validateNumberString(value) {
|
|
88
96
|
if (Number.isNaN(Number(value))) {
|
|
89
97
|
const errorMessage = `@procore/globalization-toolkit NaN error, string value must represent an unformatted number.`;
|
|
@@ -92,35 +100,29 @@ function validateNumberString(value) {
|
|
|
92
100
|
}
|
|
93
101
|
return value;
|
|
94
102
|
}
|
|
95
|
-
exports.validateNumberString = validateNumberString;
|
|
96
103
|
function getDecimalSeparator(formatter) {
|
|
97
104
|
var _a;
|
|
98
105
|
return (_a = formatter
|
|
99
106
|
.formatToParts(1e9 + 0.111)
|
|
100
107
|
.find((part) => part.type === "decimal")) === null || _a === void 0 ? void 0 : _a.value;
|
|
101
108
|
}
|
|
102
|
-
exports.getDecimalSeparator = getDecimalSeparator;
|
|
103
109
|
function fixDecimal(value, digits) {
|
|
104
110
|
return isBigNumberString(value)
|
|
105
111
|
? new big_js_1.Big(value).toFixed(digits)
|
|
106
112
|
: Number(value).toFixed(digits);
|
|
107
113
|
}
|
|
108
|
-
exports.fixDecimal = fixDecimal;
|
|
109
114
|
function trimZeros(value, digits) {
|
|
110
115
|
return value.replace(new RegExp("(\\d{" + digits + "})0+$"), "$1");
|
|
111
116
|
}
|
|
112
|
-
exports.trimZeros = trimZeros;
|
|
113
117
|
function padZeros(value, digits) {
|
|
114
118
|
const trailingDigits = value.match(new RegExp("\\d+$"));
|
|
115
119
|
const length = trailingDigits ? trailingDigits[0].length : 0;
|
|
116
120
|
return value.concat("0".repeat(digits - length < 0 ? 0 : digits - length));
|
|
117
121
|
}
|
|
118
|
-
exports.padZeros = padZeros;
|
|
119
122
|
function isBigNumberString(value) {
|
|
120
123
|
return (typeof value === "string" &&
|
|
121
124
|
value.replace(".", "").length > exports.MAXIMUM_PRECISE_DIGITS);
|
|
122
125
|
}
|
|
123
|
-
exports.isBigNumberString = isBigNumberString;
|
|
124
126
|
function formatBigNumber(value, formatter, percent) {
|
|
125
127
|
const formatFraction = (fixedValue, formatter, percent) => {
|
|
126
128
|
const fraction = percent === Number_types_1.Percent.DECIMAL
|
|
@@ -171,7 +173,6 @@ function formatBigNumber(value, formatter, percent) {
|
|
|
171
173
|
: restoredInteger).concat(suffix);
|
|
172
174
|
return formattedNumber;
|
|
173
175
|
}
|
|
174
|
-
exports.formatBigNumber = formatBigNumber;
|
|
175
176
|
function formatNumberOrCurrency(value, formatter, percent) {
|
|
176
177
|
if (typeof value === "string") {
|
|
177
178
|
exports.validateNumberString(value);
|
|
@@ -180,5 +181,4 @@ function formatNumberOrCurrency(value, formatter, percent) {
|
|
|
180
181
|
? exports.formatBigNumber(value, formatter, percent)
|
|
181
182
|
: formatter.format(Number(exports.transformPercentValue(value, formatter, percent)));
|
|
182
183
|
}
|
|
183
|
-
exports.formatNumberOrCurrency = formatNumberOrCurrency;
|
|
184
184
|
//# sourceMappingURL=NumberUtils.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"NumberUtils.js","sourceRoot":"","sources":["../../src/numbers/NumberUtils.ts"],"names":[],"mappings":";;;
|
|
1
|
+
{"version":3,"file":"NumberUtils.js","sourceRoot":"","sources":["../../src/numbers/NumberUtils.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.sortByLocale =
|
|
3
|
+
exports.sortByLocale = sortByLocale;
|
|
4
4
|
const FormatterUtils_1 = require("../FormatterUtils");
|
|
5
5
|
let cachedCollator;
|
|
6
6
|
function getCollator(locale) {
|
|
@@ -56,5 +56,4 @@ function sortByLocale(array, locale, attribute, direction = "ASC") {
|
|
|
56
56
|
return 0;
|
|
57
57
|
});
|
|
58
58
|
}
|
|
59
|
-
exports.sortByLocale = sortByLocale;
|
|
60
59
|
//# sourceMappingURL=SortByLocale.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SortByLocale.js","sourceRoot":"","sources":["../../src/sortByLocale/SortByLocale.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"SortByLocale.js","sourceRoot":"","sources":["../../src/sortByLocale/SortByLocale.ts"],"names":[],"mappings":"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"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"TestBuilder.js","sourceRoot":"","sources":["../../src/test/TestBuilder.ts"],"names":[],"mappings":";;;
|
|
1
|
+
{"version":3,"file":"TestBuilder.js","sourceRoot":"","sources":["../../src/test/TestBuilder.ts"],"names":[],"mappings":";;;AAmDO,MAAM,cAAc,GAAG,CAK5B,YAAwD,EACxD,YAA2C,EAC3C,aAAqB,EAAE,EACjB,EAAE;IACR,IAAI,YAAY,CAAC,KAAK,EAAE,CAAC;QACvB,UAAU,CAAC,YAAY,EAAE,YAAY,CAAC,WAAW,EAAE,YAAY,CAAC,KAAK,kCAChE,UAAU,GACV,YAAY,CAAC,MAAM,EACtB,CAAC;IACL,CAAC;IACD,IAAI,YAAY,CAAC,SAAS,EAAE,CAAC;QAC3B,QAAQ,CAAC,IAAI,CAAC,YAAY,CAAC,SAAS,CAAC,CACnC,YAAY,CAAC,WAAW,EACxB,CAAC,WAAW,EAAE,EAAE,CACd,IAAA,sBAAc,EAAC,YAAY,EAAE,WAAW,kCACnC,UAAU,GACV,WAAW,CAAC,MAAM,EACrB,CACL,CAAC;IACJ,CAAC;AACH,CAAC,CAAC;AAzBW,QAAA,cAAc,kBAyBzB;AAEF,MAAM,UAAU,GAAG,CACjB,YAAwD,EACxD,WAAmB,EACnB,KAAkB,EAClB,MAAc,EACR,EAAE;IACR,QAAQ,CAAC,WAAW,EAAE,GAAG,EAAE;QACzB,IAAI,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,IAAI,EAAE,CAAC,QAAQ,EAAE,EAAE;YAClC,MAAM,CAAC,YAAY,CAAC,QAAQ,EAAE,MAAM,CAAC,CAAC,CAAC,OAAO,CAAC,QAAQ,CAAC,QAAQ,CAAC,CAAC;QACpE,CAAC,CAAC,CAAC;IACL,CAAC,CAAC,CAAC;AACL,CAAC,CAAC"}
|
|
@@ -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.es2023.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.date.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.es2019.intl.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.es2022.regexp.d.ts","../node_modules/typescript/lib/lib.es2023.array.d.ts","../node_modules/typescript/lib/lib.es2023.collection.d.ts","../node_modules/typescript/lib/lib.esnext.intl.d.ts","../node_modules/typescript/lib/lib.esnext.disposable.d.ts","../node_modules/typescript/lib/lib.esnext.decorators.d.ts","../node_modules/typescript/lib/lib.decorators.d.ts","../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../src/Formatter.types.ts","../src/getOverrideLocale/GetOverrideLocale.ts","../src/FormatterUtils.ts","../node_modules/@types/big.js/index.d.ts","../src/numbers/Number.types.ts","../src/numbers/NumberUtils.ts","../src/numbers/NumberFormatter.ts","../src/numbers/Currency.types.ts","../src/lib/currencySymbols.json","../src/lib/CoreNumberFormatter.ts","../src/numbers/SupportedCurrencies.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/mapLocaleToTmsSupportedLocale/mapLocaleToTmsSupportedLocale.ts","../src/generateSupportDocsURL/GenerateSupportDocsURL.ts","../src/getFallbackLocaleList/GetFallbackLocaleList.ts","../src/getTranslationsFromLocale/GetTranslationsFromLocale.ts","../src/sortByLocale/SortByLocale.ts","../src/index.ts","../src/test/TestBuilder.ts","../src/numbers/NumberFormatter.test.constants.ts","../node_modules/@types/node/assert.d.ts","../node_modules/@types/node/assert/strict.d.ts","../node_modules/@types/node/globals.d.ts","../node_modules/@types/node/async_hooks.d.ts","../node_modules/@types/node/buffer.d.ts","../node_modules/@types/node/child_process.d.ts","../node_modules/@types/node/cluster.d.ts","../node_modules/@types/node/console.d.ts","../node_modules/@types/node/constants.d.ts","../node_modules/@types/node/crypto.d.ts","../node_modules/@types/node/dgram.d.ts","../node_modules/@types/node/diagnostics_channel.d.ts","../node_modules/@types/node/dns.d.ts","../node_modules/@types/node/dns/promises.d.ts","../node_modules/@types/node/domain.d.ts","../node_modules/@types/node/dom-events.d.ts","../node_modules/@types/node/events.d.ts","../node_modules/@types/node/fs.d.ts","../node_modules/@types/node/fs/promises.d.ts","../node_modules/@types/node/http.d.ts","../node_modules/@types/node/http2.d.ts","../node_modules/@types/node/https.d.ts","../node_modules/@types/node/inspector.d.ts","../node_modules/@types/node/module.d.ts","../node_modules/@types/node/net.d.ts","../node_modules/@types/node/os.d.ts","../node_modules/@types/node/path.d.ts","../node_modules/@types/node/perf_hooks.d.ts","../node_modules/@types/node/process.d.ts","../node_modules/@types/node/punycode.d.ts","../node_modules/@types/node/querystring.d.ts","../node_modules/@types/node/readline.d.ts","../node_modules/@types/node/readline/promises.d.ts","../node_modules/@types/node/repl.d.ts","../node_modules/@types/node/stream.d.ts","../node_modules/@types/node/stream/promises.d.ts","../node_modules/@types/node/stream/consumers.d.ts","../node_modules/@types/node/stream/web.d.ts","../node_modules/@types/node/string_decoder.d.ts","../node_modules/@types/node/test.d.ts","../node_modules/@types/node/timers.d.ts","../node_modules/@types/node/timers/promises.d.ts","../node_modules/@types/node/tls.d.ts","../node_modules/@types/node/trace_events.d.ts","../node_modules/@types/node/tty.d.ts","../node_modules/@types/node/url.d.ts","../node_modules/@types/node/util.d.ts","../node_modules/@types/node/v8.d.ts","../node_modules/@types/node/vm.d.ts","../node_modules/@types/node/wasi.d.ts","../node_modules/@types/node/worker_threads.d.ts","../node_modules/@types/node/zlib.d.ts","../node_modules/@types/node/globals.global.d.ts","../node_modules/@types/node/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":"2ac9cdcfb8f8875c18d14ec5796a8b029c426f73ad6dc3ffb580c228b58d1c44","affectsGlobalScope":true},"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","dc48272d7c333ccf58034c0026162576b7d50ea0e69c3b9292f803fc20720fd5","9a68c0c07ae2fa71b44384a839b7b8d81662a236d4b9ac30916718f7510b1b2d","5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","5514e54f17d6d74ecefedc73c504eadffdeda79c7ea205cf9febead32d45c4bc","1c0cdb8dc619bc549c3e5020643e7cf7ae7940058e8c7e5aefa5871b6d86f44b","bed7b7ba0eb5a160b69af72814b4dde371968e40b6c5e73d3a9f7bee407d158c",{"version":"0075fa5ceda385bcdf3488e37786b5a33be730e8bc4aa3cf1e78c63891752ce8","affectsGlobalScope":true},{"version":"f296963760430fb65b4e5d91f0ed770a91c6e77455bacf8fa23a1501654ede0e","affectsGlobalScope":true},{"version":"09226e53d1cfda217317074a97724da3e71e2c545e18774484b61562afc53cd2","affectsGlobalScope":true},{"version":"4443e68b35f3332f753eacc66a04ac1d2053b8b035a0e0ac1d455392b5e243b3","affectsGlobalScope":true},{"version":"8b41361862022eb72fcc8a7f34680ac842aca802cf4bc1f915e8c620c9ce4331","affectsGlobalScope":true},{"version":"f7bd636ae3a4623c503359ada74510c4005df5b36de7f23e1db8a5c543fd176b","affectsGlobalScope":true},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true},{"version":"0c20f4d2358eb679e4ae8a4432bdd96c857a2960fd6800b21ec4008ec59d60ea","affectsGlobalScope":true},{"version":"93495ff27b8746f55d19fcbcdbaccc99fd95f19d057aed1bd2c0cafe1335fbf0","affectsGlobalScope":true},{"version":"82d0d8e269b9eeac02c3bd1c9e884e85d483fcb2cd168bccd6bc54df663da031","affectsGlobalScope":true},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true},{"version":"b8deab98702588840be73d67f02412a2d45a417a3c097b2e96f7f3a42ac483d1","affectsGlobalScope":true},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true},{"version":"376d554d042fb409cb55b5cbaf0b2b4b7e669619493c5d18d5fa8bd67273f82a","affectsGlobalScope":true},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","affectsGlobalScope":true},{"version":"61c37c1de663cf4171e1192466e52c7a382afa58da01b1dc75058f032ddf0839","affectsGlobalScope":true},{"version":"c4138a3dd7cd6cf1f363ca0f905554e8d81b45844feea17786cdf1626cb8ea06","affectsGlobalScope":true},{"version":"6ff3e2452b055d8f0ec026511c6582b55d935675af67cdb67dd1dc671e8065df","affectsGlobalScope":true},{"version":"03de17b810f426a2f47396b0b99b53a82c1b60e9cba7a7edda47f9bb077882f4","affectsGlobalScope":true},{"version":"8184c6ddf48f0c98429326b428478ecc6143c27f79b79e85740f17e6feb090f1","affectsGlobalScope":true},{"version":"261c4d2cf86ac5a89ad3fb3fafed74cbb6f2f7c1d139b0540933df567d64a6ca","affectsGlobalScope":true},{"version":"6af1425e9973f4924fca986636ac19a0cf9909a7e0d9d3009c349e6244e957b6","affectsGlobalScope":true},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true},{"version":"15a630d6817718a2ddd7088c4f83e4673fde19fa992d2eae2cf51132a302a5d3","affectsGlobalScope":true},{"version":"b7e9f95a7387e3f66be0ed6db43600c49cec33a3900437ce2fd350d9b7cb16f2","affectsGlobalScope":true},{"version":"01e0ee7e1f661acedb08b51f8a9b7d7f959e9cdb6441360f06522cc3aea1bf2e","affectsGlobalScope":true},{"version":"ac17a97f816d53d9dd79b0d235e1c0ed54a8cc6a0677e9a3d61efb480b2a3e4e","affectsGlobalScope":true},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true},{"version":"ec0104fee478075cb5171e5f4e3f23add8e02d845ae0165bfa3f1099241fa2aa","affectsGlobalScope":true},{"version":"2b72d528b2e2fe3c57889ca7baef5e13a56c957b946906d03767c642f386bbc3","affectsGlobalScope":true},{"version":"9cc66b0513ad41cb5f5372cca86ef83a0d37d1c1017580b7dace3ea5661836df","affectsGlobalScope":true},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true},{"version":"709efdae0cb5df5f49376cde61daacc95cdd44ae4671da13a540da5088bf3f30","affectsGlobalScope":true},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true},{"version":"bc496ef4377553e461efcf7cc5a5a57cf59f9962aea06b5e722d54a36bf66ea1","affectsGlobalScope":true},{"version":"038a2f66a34ee7a9c2fbc3584c8ab43dff2995f8c68e3f566f4c300d2175e31e","affectsGlobalScope":true},{"version":"4fa6ed14e98aa80b91f61b9805c653ee82af3502dc21c9da5268d3857772ca05","affectsGlobalScope":true},{"version":"f5c92f2c27b06c1a41b88f6db8299205aee52c2a2943f7ed29bd585977f254e8","affectsGlobalScope":true},{"version":"930b0e15811f84e203d3c23508674d5ded88266df4b10abee7b31b2ac77632d2","affectsGlobalScope":true},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true},{"version":"b9ea5778ff8b50d7c04c9890170db34c26a5358cccba36844fe319f50a43a61a","affectsGlobalScope":true},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true},{"version":"50d53ccd31f6667aff66e3d62adf948879a3a16f05d89882d1188084ee415bbc","affectsGlobalScope":true},{"version":"65be38e881453e16f128a12a8d36f8b012aa279381bf3d4dc4332a4905ceec83","affectsGlobalScope":true},{"version":"436aaf437562f276ec2ddbee2f2cdedac7664c1e4c1d2c36839ddd582eeb3d0a","affectsGlobalScope":true},{"version":"307c8b7ebbd7f23a92b73a4c6c0a697beca05b06b036c23a34553e5fe65e4fdc","affectsGlobalScope":true},{"version":"e1913f656c156a9e4245aa111fbb436d357d9e1fe0379b9a802da7fe3f03d736","affectsGlobalScope":true},{"version":"d4b1d2c51d058fc21ec2629fff7a76249dec2e36e12960ea056e3ef89174080f","affectsGlobalScope":true},{"version":"f35a831e4f0fe3b3697f4a0fe0e3caa7624c92b78afbecaf142c0f93abfaf379","affectsGlobalScope":true},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true},{"version":"46cf601d98060d62dcde3acdfe963f7b8bf557442febadb52c76813584efb4c3","signature":"a609408e31205ab7e37b9b709c3dd418da31aeb8c0510cdd92c3e2a6ffa571ae"},{"version":"49862256914eebca3a35b36cc6064095d9d0bb50ba3c5d062caa330a6bd49ce7","signature":"08b1630ac89cf97f5f43f602046df4f3844ba08d69b3c705f09fecc61c7c387b"},{"version":"940112bfee7d147ba39454c04e8fea2acc6da197aa7540f5cfa5f1df837d3efb","signature":"4748c994127e708f2fc90c0ef4565077a46ab6d90de6b6c6052eab169ca847e5"},"ef50b93a202c92c16ba0aa66ac03ded00a213eea4c2fa30adbc191a944f76f12",{"version":"74888ee11b1ca4684607fe7cbabb38bff0b4e5734afad5e11493ad612f37e1da","signature":"aa15aad042596c35de7f81d53322d5093c33e13f647519717b97d8071a7b806a"},{"version":"d856ead3263482ea571f44c1f6bd5bf6527eb6b39e44864ec5c01294e2a0b71e","signature":"f4818db57a5012eff53662a3fc2d0ef646f3f49bc8f5a587007a16d0ab518fcb"},{"version":"05a640e355bc961fa95e1b3cddcd814e63bbcfa7d19d2fa6a3eda226120109c8","signature":"fe3a893706a4844547d5755c3bc9a851ecba2b494dbfcfd88541ffdcb26f1053"},{"version":"c065683dcfeed2135593f14c51e12dcf910156fb7bc6b9dc1839a5cc21160e56","signature":"297292152d0603ecbda48142e2cdd8dd70bcd471cbb1e447afa76c68bf57a5f7"},"aa6b833f0c7d1357cca09bc316c3ccade828613f57e8fe7e7dd7b4adc579621b",{"version":"bab92c4608ae4ad7b0e674d7674343f69f6f9c5a46f87ed53196d10959b0da8e","signature":"f5bec3aa371e5305c12685bfb19a8d304da22f4b0b437c2d6517877484956cf4"},{"version":"e9d85e4f800769e305ce250d4fe33aac00ece6e7f4d6eb65bf3e5ba5c54de8bc","signature":"ff09efae0e02c67e43231ae69cdc4b32d21aa18b981fb231cc92a84fe01ca3fc"},{"version":"fe4d028316eec392f71e289f3c434e29d39d270ea5e8f70c8984899444c019ef","signature":"0797cb460c903afc67bf76091dcffea48d8964963d4f0703882c4a83b1e1a137"},{"version":"bf71558eae87c1e3ce202c96caab54d27d7290dfbf57e1fad060d6c99c9eb443","signature":"1359d06b8007e756a74e95379aa560e08ff0f6fbfcc824476ee02ef6ecbb6ba6"},"296ce8ff193943f93f6ed81a911c5afc354041d4a3b208d0434525af1f3d765b",{"version":"e7a986d3ea09835ed8895506c71cb02ba401bfc0a11b5151860572609e0a115e","signature":"2941dc7a4d63b87a54df3f5329f76433f9a9ccea2261ab60a7a24f30142fa90b"},{"version":"d17da54daaecca7595be6b994611f6c26240d8c2d3455c2ccca2de6edfe2761b","signature":"18d4d4b13e7bb34ba7cb87d5d672f19c2ae63f6aca376b0c3565dac1781871be"},{"version":"35851857caf253961ef606cb5b86c0be954e47499d3d84f4313759d31aa8ac77","signature":"50c7e17852e1e01a66d93a385e89bd20053ce6433384d0ecb2f197deb769bedd"},{"version":"abbad583e58327df5b8906974c9f937a9065f88c7e664d407212e79921f1711c","signature":"62253cbdd79645c6574db82e498487438971b73ba4bbfdb62ebd90e6abd939d9"},{"version":"866a6386ebdc4f48569e67ca799946eccb6562da9f71d5625703e394d95be037","signature":"309792dc2dd6aa5eac65e2d9799c1837151574c353cac21b8751acd290fd7c8e"},{"version":"49b8cc789218574bd14e4430c263bae80995b8c613ae211ce72c8323ed56c223","signature":"0b06d5f2f25a4630503c78c34fe235797d4ee39f9c1db7fa9d162d69fa0b30a5"},{"version":"0312aa08d77e60dc09541db9a77283b84b2cc1ae1116cdddf0721036a63649b7","signature":"6143c4f0ffce4b504f7c8263d395ef2a20b6be639a047d01cb0c3635a97f50a9"},{"version":"3fcd52fe1784d172fa639dbe2c86282b2ae6ea546a069c7d469626f3eea97bda","signature":"cf10c04b28e52c6dcf30587f4dc2270eabbd95475d546b720d2d3459df3162b3"},{"version":"bec661ac7596f3fa516e5832676ed07e18913ed1be2b723a72cabab57ef14bf1","signature":"ccaae4a1019bf7f3e434c073fb4cc5e30a6149f2fae6b383f4b0aa8649390fa7"},{"version":"8c7feb15648db8053b6b98270ee2fdb8503962eae3b02fff4edabc3ed9097d44","signature":"f037a960c05431515439dbb70c29403c5199e5333ca92dce7eb959d441413aec"},{"version":"4a8036fcd2744888d628d517fee72f54f7ff49c1f09eab6a48e371a412e548ad","signature":"080290c451b61bfa03dd7b32088838aaf612b3f4831aefcb299b30905ff21973"},"66a6e7b6e32eea099615d627028ed0d681679e31237df03e68e1b912e3e61da0","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"f749812878fecfa53cfc13b36e5d35086fb6377983a9df44175da83ccc23af1f","affectsGlobalScope":true},"fd536fe411f46ae62c4729e342a3494adbdd54335e41039c238170c9781da9ff",{"version":"772ff00e189d93488d1ca6f0f4dfba77bd090a99ed31e19a14bc16fad4078e48","affectsGlobalScope":true},"d9b1fa0da9fbff85402c3ee794bcfe6d7cfef2fa053761b7d83989cdb7f9b26d","ac0c7cb0a4c1bec60be2c0460b3bda1e674eaf2c98312d7b6f16a0bb58718e2d",{"version":"7e2181a6fc140b4525d5a45c204477c37fa78a635558e88552c68f76a4325403","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","6a6bfa45d3ed96dea1ad653444fb26ddaa9245d2e2d6ddaab050cb9a2c0936d7","276b547eeb8eeeee9a446a3bfa6e07d1c0199269bdcf33813abab1281394a9cb","c999f7816955f75b447823e3e4085f699600e2a4a3327907df9af65b0a9c0df6","958df89fdcf5555cdfd57a14037e05505048dd29c59e8009bea279b65523b241","ffa8324a4c0611f9a50262fb36f097eeabe0fa0d71755aa67156da13cde1b932","9b814e0806922056145bedb096f11b73bdce70cc871f3ccfc4ce00b2cba75718",{"version":"6b526a5ec4a401ca7c26cfe6a48e641d8f30af76673bad3b06a1b4504594a960","affectsGlobalScope":true},{"version":"be3d24f3fd8c85fedd91485b207d180f14ac2602805b52f6a33462ada14c27b0","affectsGlobalScope":true},"443509b8f5fa1242a5b542ec817f0e9ef48064a7298daad87607bb8543e93db9","2ad6a251b6ef19fd1f8498f83bb7b265033bd52287e1f6569d09544f18806713","bfa08f2c30c475aef1c9451855ba6b2acfdc64f61950a38fae75806d66fb85c2","159807eb55a9439f9a675bd493788190a6203b5f36c315f8c3acbfcb875c7072","fe31b2b31ac5453fc7b8eef32b62017e55b214ceb884f0b177f442af92e84682","dd72576c8ea64d55af46a386068503d3cfcecce84ed7e1cbd4ff4081ba67fafc",{"version":"125af9d85cb9d5e508353f10a8d52f01652d2d48b2cea54789a33e5b4d289c1c","affectsGlobalScope":true},"70a7e8a7880d55396285e4b85ff5bdf3af3083176abe07f944967836f2a43188","3570df7c6f3a976109f55b596a2d88c2f87e0574cd1502272594ee5c4e56d0ef","850e95721334c2aa7697b08782f443ec4286274e5024169d4443933544f359d7",{"version":"74e6cd21f7b5e29fab05060ea24e2b90aa254f16f3f62ccd7055bdb8fc7b2ff5","affectsGlobalScope":true},{"version":"5761c90b0cabdd6bd1f5fb1c3bf942088fdd39e18ed35dbe39b0c34bc733bf13","affectsGlobalScope":true},"1eb6c5569d41e6021832d0a8a71f45fecbc13d03ad7d306da485999148b64955","c05ef0ecf06540ad3039515c10d3b27f9380639ced40f4093fd073e1b5ff21d9","c774096c5935712de41c763e3c08a04b7a788a85fb07a0c2df23fb5ace3bc610","2b847f2aba41dcd69677684d5d300c08aea4e306c305fd39bf548cef19f03cfe","f4c0cbc93eb51fd61e07a86111739770dd524f6297bd83266ff004aec553e085","9a134dbb29f0af914d90b23f609b39019d66ed53db7d492ab6b04c67114559da","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff","785e5be57d4f20f290a20e7b0c6263f6c57fd6e51283050756cef07d6d651c68","44b8b584a338b190a59f4f6929d072431950c7bd92ec2694821c11bce180c8a5","7b3781fbdfddbee8dba55ccee5aa74a7c8d6701ade11d49ab7d8cb1fcefe669e","c4aab2ec3a249f2a4caa9cbdb099752a80daf999b79d85aa3504cdfd6e559476",{"version":"2cff47e15621f3055af1df1547426f833c9d0a571750c4f0659836f45c50fe0a","affectsGlobalScope":true},"ad08154d9602429522cac965a715fde27d421d69b24756c5d291877dda75353e","c764a6cf523d13f2304a23216cd1084e28c041eebabd8aa9b2a9d99866c668c0","1272a5c2bd05961adc473e905332b7a422b00485c10b41c752f7fcf6835e3436","30ef92bf8135ce36ba1231fe41715276f2a40be72a478ddeb862bc16672e8680",{"version":"4ace0a30a70fe5963442d75ea6e69f525671ae76f6e57ab7556c44839b4237e8","affectsGlobalScope":true},{"version":"a6f03dbf03c001fb3ac1c9bea6dde049dfff27ef8886cc4a886374aacf2e997d","affectsGlobalScope":true},"66bfb3de947abf4b117ee849c245425dbe494d6903e28f9ded566e91c9d05d77","c28d4f58131b93d60e087b86148d4e0c9d9b5c49c23ff1a9d1a9594fdedd5d08","c6b5d7f259544c91024ecf2b17138574a3f6ff2476468fafd7f957d2b68d6d98",{"version":"1ec27c4b695590464113276d174f873e260e468ef226b7dc18f9193875fa559d","affectsGlobalScope":true},"33da4ee2ab9fdd9ef8b3fc526d871ce02ae8c825283f5695e7cad507c087b97c",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"71709584ed5ed7d236dc225441ec4634ffc6c718853e04b9c27b9ea121459044","763e521cf114b80e0dd0e21ca49b9f8ae62e8999555a5e7bade8ce36b33001c2","0d14fa22c41fdc7277e6f71473b20ebc07f40f00e38875142335d5b63cdfc9d2","3054ef91b855e005b9c4681399e9d64d2a7b07a22d539314d794f09e53b876a7","ffcc5500e77223169833fc6eb59b3a507944a1f89574e0a1276b0ea7fc22c4a4","22f13de9e2fe5f0f4724797abd3d34a1cdd6e47ef81fc4933fea3b8bf4ad524b","e3ba509d3dce019b3190ceb2f3fc88e2610ab717122dabd91a9efaa37804040d","cda0cb09b995489b7f4c57f168cd31b83dcbaa7aad49612734fb3c9c73f6e4f2","f72f8428f3c1caa22e9c247d046603b85b442c0dae7b77a7a0bc092c18867cb7",{"version":"195f63105abc03e72b6a176e3e34dfb5ac932b55db378fdc7874b1617e24b465","affectsGlobalScope":true}],"root":[[65,67],[69,72],[74,77],[79,89]],"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":2},"fileIdsList":[[136],[136,146],[136,148,151],[90,136],[93,136],[94,99,127,136],[95,106,107,114,124,135,136],[95,96,106,114,136],[97,136],[98,99,107,115,136],[99,124,132,136],[100,102,106,114,136],[101,136],[102,103,136],[106,136],[104,106,136],[106,107,108,124,135,136],[106,107,108,121,124,127,136],[136,140],[102,106,109,114,124,135,136],[106,107,109,110,114,124,132,135,136],[109,111,124,132,135,136],[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],[106,112,136],[113,135,136],[102,106,114,124,136],[115,136],[116,136],[93,117,136],[118,134,136,140],[119,136],[120,136],[106,121,122,136],[121,123,136,138],[94,106,124,125,126,127,136],[94,124,126,136],[124,125,136],[127,136],[128,136],[124,136],[106,130,131,136],[130,131,136],[99,114,124,132,136],[133,136],[114,134,136],[94,109,120,135,136],[99,136],[124,136,137],[136,138],[136,139],[94,99,106,108,117,124,135,136,138,140],[124,136,141],[136,144,150],[136,148],[136,145,149],[136,147],[65,66,136],[65,136],[65,78,79,80,136],[67,79,136],[65,82,136],[65,84,136],[65,66,67,69,71,72,77,79,81,82,83,84,85,86,136],[72,73,136],[69,136],[67,69,70,72,76,136],[67,70,72,74,75,136],[69,88,136],[65,67,69,70,136],[67,68,69,136],[67,136],[65],[65,79],[79],[65,66,67,69,71,72,77,79,81,82,83,84,85,86],[69],[69,72],[72],[88],[65,69]],"referencedMap":[[144,1],[147,2],[146,1],[68,1],[152,3],[90,4],[91,4],[93,5],[94,6],[95,7],[96,8],[97,9],[98,10],[99,11],[100,12],[101,13],[102,14],[103,14],[105,15],[104,16],[106,15],[107,17],[108,18],[92,19],[142,1],[109,20],[110,21],[111,22],[143,23],[112,24],[113,25],[114,26],[115,27],[116,28],[117,29],[118,30],[119,31],[120,32],[121,33],[122,33],[123,34],[124,35],[126,36],[125,37],[127,38],[128,39],[129,40],[130,41],[131,42],[132,43],[133,44],[134,45],[135,46],[136,47],[137,48],[138,49],[139,50],[140,51],[141,52],[145,1],[151,53],[149,54],[150,55],[148,56],[63,1],[64,1],[12,1],[14,1],[13,1],[2,1],[15,1],[16,1],[17,1],[18,1],[19,1],[20,1],[21,1],[22,1],[3,1],[4,1],[23,1],[27,1],[24,1],[25,1],[26,1],[28,1],[29,1],[30,1],[5,1],[31,1],[32,1],[33,1],[34,1],[6,1],[38,1],[35,1],[36,1],[37,1],[39,1],[7,1],[40,1],[45,1],[46,1],[41,1],[42,1],[43,1],[44,1],[8,1],[50,1],[47,1],[48,1],[49,1],[51,1],[9,1],[52,1],[53,1],[54,1],[57,1],[55,1],[56,1],[58,1],[59,1],[10,1],[1,1],[11,1],[62,1],[61,1],[60,1],[78,1],[65,1],[67,57],[79,58],[81,59],[80,60],[83,58],[84,61],[66,58],[85,62],[87,63],[74,64],[73,1],[82,57],[72,65],[77,66],[76,67],[69,58],[89,68],[71,69],[70,70],[75,1],[86,71],[88,58]],"exportedModulesMap":[[144,1],[147,2],[146,1],[68,1],[152,3],[90,4],[91,4],[93,5],[94,6],[95,7],[96,8],[97,9],[98,10],[99,11],[100,12],[101,13],[102,14],[103,14],[105,15],[104,16],[106,15],[107,17],[108,18],[92,19],[142,1],[109,20],[110,21],[111,22],[143,23],[112,24],[113,25],[114,26],[115,27],[116,28],[117,29],[118,30],[119,31],[120,32],[121,33],[122,33],[123,34],[124,35],[126,36],[125,37],[127,38],[128,39],[129,40],[130,41],[131,42],[132,43],[133,44],[134,45],[135,46],[136,47],[137,48],[138,49],[139,50],[140,51],[141,52],[145,1],[151,53],[149,54],[150,55],[148,56],[63,1],[64,1],[12,1],[14,1],[13,1],[2,1],[15,1],[16,1],[17,1],[18,1],[19,1],[20,1],[21,1],[22,1],[3,1],[4,1],[23,1],[27,1],[24,1],[25,1],[26,1],[28,1],[29,1],[30,1],[5,1],[31,1],[32,1],[33,1],[34,1],[6,1],[38,1],[35,1],[36,1],[37,1],[39,1],[7,1],[40,1],[45,1],[46,1],[41,1],[42,1],[43,1],[44,1],[8,1],[50,1],[47,1],[48,1],[49,1],[51,1],[9,1],[52,1],[53,1],[54,1],[57,1],[55,1],[56,1],[58,1],[59,1],[10,1],[1,1],[11,1],[62,1],[61,1],[60,1],[78,1],[67,72],[79,72],[81,73],[80,74],[83,72],[84,72],[66,72],[85,72],[87,75],[73,1],[82,72],[72,76],[77,77],[76,78],[69,72],[89,79],[71,80],[70,76],[88,72]],"semanticDiagnosticsPerFile":[144,147,146,68,152,90,91,93,94,95,96,97,98,99,100,101,102,103,105,104,106,107,108,92,142,109,110,111,143,112,113,114,115,116,117,118,119,120,121,122,123,124,126,125,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,145,151,149,150,148,63,64,12,14,13,2,15,16,17,18,19,20,21,22,3,4,23,27,24,25,26,28,29,30,5,31,32,33,34,6,38,35,36,37,39,7,40,45,46,41,42,43,44,8,50,47,48,49,51,9,52,53,54,57,55,56,58,59,10,1,11,62,61,60,78,65,67,79,81,80,83,84,66,85,87,74,73,82,72,77,76,69,89,71,70,75,86,88]},"version":"5.2.2"}
|
|
1
|
+
{"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.es2023.d.ts","../node_modules/typescript/lib/lib.es2024.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.es2016.intl.d.ts","../node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../node_modules/typescript/lib/lib.es2017.date.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.es2019.intl.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.string.d.ts","../node_modules/typescript/lib/lib.es2022.regexp.d.ts","../node_modules/typescript/lib/lib.es2023.array.d.ts","../node_modules/typescript/lib/lib.es2023.collection.d.ts","../node_modules/typescript/lib/lib.es2023.intl.d.ts","../node_modules/typescript/lib/lib.es2024.arraybuffer.d.ts","../node_modules/typescript/lib/lib.es2024.collection.d.ts","../node_modules/typescript/lib/lib.es2024.object.d.ts","../node_modules/typescript/lib/lib.es2024.promise.d.ts","../node_modules/typescript/lib/lib.es2024.regexp.d.ts","../node_modules/typescript/lib/lib.es2024.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2024.string.d.ts","../node_modules/typescript/lib/lib.esnext.array.d.ts","../node_modules/typescript/lib/lib.esnext.collection.d.ts","../node_modules/typescript/lib/lib.esnext.intl.d.ts","../node_modules/typescript/lib/lib.esnext.disposable.d.ts","../node_modules/typescript/lib/lib.esnext.promise.d.ts","../node_modules/typescript/lib/lib.esnext.decorators.d.ts","../node_modules/typescript/lib/lib.esnext.iterator.d.ts","../node_modules/typescript/lib/lib.esnext.float16.d.ts","../node_modules/typescript/lib/lib.esnext.error.d.ts","../node_modules/typescript/lib/lib.esnext.sharedmemory.d.ts","../node_modules/typescript/lib/lib.decorators.d.ts","../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../src/Formatter.types.ts","../src/getOverrideLocale/GetOverrideLocale.ts","../src/FormatterUtils.ts","../node_modules/@types/big.js/index.d.ts","../src/numbers/Number.types.ts","../src/numbers/NumberUtils.ts","../src/numbers/NumberFormatter.ts","../src/numbers/Currency.types.ts","../src/lib/currencySymbols.json","../src/lib/CoreNumberFormatter.ts","../src/numbers/SupportedCurrencies.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/mapLocaleToTmsSupportedLocale/mapLocaleToTmsSupportedLocale.ts","../src/generateSupportDocsURL/GenerateSupportDocsURL.ts","../src/getFallbackLocaleList/GetFallbackLocaleList.ts","../src/getTranslationsFromLocale/GetTranslationsFromLocale.ts","../src/sortByLocale/SortByLocale.ts","../src/index.ts","../src/test/TestBuilder.ts","../src/numbers/NumberFormatter.test.constants.ts","../node_modules/@types/node/globals.typedarray.d.ts","../node_modules/@types/node/buffer.buffer.d.ts","../node_modules/@types/node/globals.d.ts","../node_modules/@types/node/web-globals/abortcontroller.d.ts","../node_modules/@types/node/web-globals/blob.d.ts","../node_modules/@types/node/web-globals/console.d.ts","../node_modules/@types/node/web-globals/crypto.d.ts","../node_modules/@types/node/web-globals/domexception.d.ts","../node_modules/@types/node/web-globals/encoding.d.ts","../node_modules/@types/node/web-globals/events.d.ts","../node_modules/undici-types/utility.d.ts","../node_modules/undici-types/header.d.ts","../node_modules/undici-types/readable.d.ts","../node_modules/undici-types/fetch.d.ts","../node_modules/undici-types/formdata.d.ts","../node_modules/undici-types/connector.d.ts","../node_modules/undici-types/client-stats.d.ts","../node_modules/undici-types/client.d.ts","../node_modules/undici-types/errors.d.ts","../node_modules/undici-types/dispatcher.d.ts","../node_modules/undici-types/global-dispatcher.d.ts","../node_modules/undici-types/global-origin.d.ts","../node_modules/undici-types/pool-stats.d.ts","../node_modules/undici-types/pool.d.ts","../node_modules/undici-types/handlers.d.ts","../node_modules/undici-types/balanced-pool.d.ts","../node_modules/undici-types/round-robin-pool.d.ts","../node_modules/undici-types/h2c-client.d.ts","../node_modules/undici-types/agent.d.ts","../node_modules/undici-types/dispatcher1-wrapper.d.ts","../node_modules/undici-types/mock-interceptor.d.ts","../node_modules/undici-types/mock-call-history.d.ts","../node_modules/undici-types/mock-agent.d.ts","../node_modules/undici-types/mock-client.d.ts","../node_modules/undici-types/mock-pool.d.ts","../node_modules/undici-types/snapshot-agent.d.ts","../node_modules/undici-types/mock-errors.d.ts","../node_modules/undici-types/proxy-agent.d.ts","../node_modules/undici-types/socks5-proxy-agent.d.ts","../node_modules/undici-types/env-http-proxy-agent.d.ts","../node_modules/undici-types/retry-handler.d.ts","../node_modules/undici-types/retry-agent.d.ts","../node_modules/undici-types/api.d.ts","../node_modules/undici-types/cache-interceptor.d.ts","../node_modules/undici-types/interceptors.d.ts","../node_modules/undici-types/util.d.ts","../node_modules/undici-types/cookies.d.ts","../node_modules/undici-types/patch.d.ts","../node_modules/undici-types/websocket.d.ts","../node_modules/undici-types/eventsource.d.ts","../node_modules/undici-types/diagnostics-channel.d.ts","../node_modules/undici-types/content-type.d.ts","../node_modules/undici-types/cache.d.ts","../node_modules/undici-types/index.d.ts","../node_modules/@types/node/web-globals/fetch.d.ts","../node_modules/@types/node/web-globals/importmeta.d.ts","../node_modules/@types/node/web-globals/messaging.d.ts","../node_modules/@types/node/web-globals/navigator.d.ts","../node_modules/@types/node/web-globals/performance.d.ts","../node_modules/@types/node/web-globals/storage.d.ts","../node_modules/@types/node/web-globals/streams.d.ts","../node_modules/@types/node/web-globals/timers.d.ts","../node_modules/@types/node/web-globals/url.d.ts","../node_modules/@types/node/assert.d.ts","../node_modules/@types/node/assert/strict.d.ts","../node_modules/@types/node/async_hooks.d.ts","../node_modules/@types/node/buffer.d.ts","../node_modules/@types/node/child_process.d.ts","../node_modules/@types/node/cluster.d.ts","../node_modules/@types/node/console.d.ts","../node_modules/@types/node/constants.d.ts","../node_modules/@types/node/crypto.d.ts","../node_modules/@types/node/dgram.d.ts","../node_modules/@types/node/diagnostics_channel.d.ts","../node_modules/@types/node/dns.d.ts","../node_modules/@types/node/dns/promises.d.ts","../node_modules/@types/node/domain.d.ts","../node_modules/@types/node/events.d.ts","../node_modules/@types/node/ffi.d.ts","../node_modules/@types/node/fs.d.ts","../node_modules/@types/node/fs/promises.d.ts","../node_modules/@types/node/http.d.ts","../node_modules/@types/node/http2.d.ts","../node_modules/@types/node/https.d.ts","../node_modules/@types/node/inspector.d.ts","../node_modules/@types/node/inspector.generated.d.ts","../node_modules/@types/node/inspector/promises.d.ts","../node_modules/@types/node/module.d.ts","../node_modules/@types/node/net.d.ts","../node_modules/@types/node/os.d.ts","../node_modules/@types/node/path.d.ts","../node_modules/@types/node/path/posix.d.ts","../node_modules/@types/node/path/win32.d.ts","../node_modules/@types/node/perf_hooks.d.ts","../node_modules/@types/node/process.d.ts","../node_modules/@types/node/punycode.d.ts","../node_modules/@types/node/querystring.d.ts","../node_modules/@types/node/quic.d.ts","../node_modules/@types/node/readline.d.ts","../node_modules/@types/node/readline/promises.d.ts","../node_modules/@types/node/repl.d.ts","../node_modules/@types/node/sea.d.ts","../node_modules/@types/node/sqlite.d.ts","../node_modules/@types/node/stream.d.ts","../node_modules/@types/node/stream/consumers.d.ts","../node_modules/@types/node/stream/iter.d.ts","../node_modules/@types/node/stream/promises.d.ts","../node_modules/@types/node/stream/web.d.ts","../node_modules/@types/node/string_decoder.d.ts","../node_modules/@types/node/test.d.ts","../node_modules/@types/node/test/reporters.d.ts","../node_modules/@types/node/timers.d.ts","../node_modules/@types/node/timers/promises.d.ts","../node_modules/@types/node/tls.d.ts","../node_modules/@types/node/trace_events.d.ts","../node_modules/@types/node/tty.d.ts","../node_modules/@types/node/url.d.ts","../node_modules/@types/node/util.d.ts","../node_modules/@types/node/util/types.d.ts","../node_modules/@types/node/v8.d.ts","../node_modules/@types/node/vm.d.ts","../node_modules/@types/node/wasi.d.ts","../node_modules/@types/node/worker_threads.d.ts","../node_modules/@types/node/zlib.d.ts","../node_modules/@types/node/zlib/iter.d.ts","../node_modules/@types/node/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"],"fileIdsList":[[108,173,181,186,189,191,192,193,205],[108,173,181,186,189,191,192,193,205,235],[108,173,181,186,189,191,192,193,205,237,240],[108,170,171,173,181,186,189,191,192,193,205],[108,172,173,181,186,189,191,192,193,205],[173,181,186,189,191,192,193,205],[108,173,181,186,189,191,192,193,205,214],[108,173,174,179,181,184,186,189,191,192,193,195,205,210,223],[108,173,174,175,181,184,186,189,191,192,193,205],[108,173,176,181,186,189,191,192,193,205,224],[108,173,177,178,181,186,189,191,192,193,196,205],[108,173,178,181,186,189,191,192,193,205,210,220],[108,173,179,181,184,186,189,191,192,193,195,205],[108,172,173,180,181,186,189,191,192,193,205],[108,173,181,182,186,189,191,192,193,205],[108,173,181,183,184,186,189,191,192,193,205],[108,172,173,181,184,186,189,191,192,193,205],[108,173,181,184,186,187,189,191,192,193,205,210,223],[108,173,181,184,186,187,189,191,192,193,205,210,212,214],[108,160,173,181,184,186,188,189,191,192,193,195,205,210,223],[108,173,181,184,186,188,189,191,192,193,195,205,210,220,223],[108,173,181,186,188,189,190,191,192,193,205,210,220,223],[107,108,109,110,111,112,113,114,115,116,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231],[108,173,181,184,186,189,191,192,193,205],[108,173,181,186,189,191,193,205],[108,173,181,186,189,191,192,193,194,205,223],[108,173,181,184,186,189,191,192,193,195,205,210],[108,173,181,186,189,191,192,193,196,205],[108,173,181,186,189,191,192,193,197,205],[108,173,181,184,186,189,191,192,193,200,205],[108,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230],[108,173,181,186,189,191,192,193,202,205],[108,173,181,186,189,191,192,193,203,205],[108,173,178,181,186,187,189,191,192,193,195,205,212,220],[108,173,181,184,186,189,191,192,193,205,206],[108,173,181,186,189,191,192,193,205,207,224,227],[108,173,181,184,186,189,191,192,193,205,210,212,213,214],[108,173,181,186,189,191,192,193,205,211,214],[108,173,181,184,186,189,191,192,193,205,210,212],[108,173,181,184,186,189,191,192,193,205,210,213,214],[108,173,181,186,189,191,192,193,205,214,224],[108,173,181,186,189,191,192,193,205,215],[108,170,173,181,186,189,191,192,193,205,210,217,223],[108,173,181,186,189,191,192,193,205,210,216],[108,173,181,184,186,189,191,192,193,205,218,219],[108,173,181,186,189,191,192,193,205,218,219],[108,173,178,181,186,189,191,192,193,195,205,210,220],[108,173,181,186,189,191,192,193,205,221],[108,173,181,186,189,191,192,193,195,205,222],[108,173,181,186,188,189,191,192,193,203,205,223],[108,173,181,186,189,191,192,193,205,224,225],[108,173,178,181,186,189,191,192,193,205,225],[108,173,181,186,189,191,192,193,205,210,226],[108,173,181,186,189,191,192,193,194,205,227],[108,173,181,186,189,191,192,193,205,228],[108,173,176,181,186,189,191,192,193,205],[108,173,178,181,186,189,191,192,193,205],[108,173,181,186,189,191,192,193,205,224],[108,160,173,181,186,189,191,192,193,205],[108,173,181,186,189,191,192,193,205,223],[108,173,181,186,189,191,192,193,205,229],[108,173,181,186,189,191,192,193,200,205],[108,173,181,186,189,191,192,193,205,219],[108,160,173,181,184,186,187,189,191,192,193,200,205,210,214,223,226,227,229],[108,173,181,186,189,191,192,193,205,210,230],[108,173,181,186,189,191,192,193,205,212,231],[108,173,181,186,189,191,192,193,205,233,239],[108,173,181,186,189,191,192,193,205,237],[108,173,181,186,189,191,192,193,205,234,238],[108,173,181,186,189,191,192,193,205,236],[108,123,126,129,130,173,181,186,189,191,192,193,205,223],[108,126,173,181,186,189,191,192,193,205,210,223],[108,126,130,173,181,186,189,191,192,193,205,223],[108,173,181,186,189,191,192,193,205,210],[108,120,173,181,186,189,191,192,193,205],[108,124,173,181,186,189,191,192,193,205],[108,122,123,126,173,181,186,189,191,192,193,205,223],[108,173,181,186,189,191,192,193,195,205,220],[108,173,181,186,189,191,192,193,205,232],[108,120,173,181,186,189,191,192,193,205,232],[108,122,126,173,181,186,189,191,192,193,195,205,223],[108,117,118,119,121,125,173,181,184,186,189,191,192,193,205,210,223],[108,126,173,181,186,189,191,192,193,205],[108,126,135,144,173,181,186,189,191,192,193,205],[108,118,124,173,181,186,189,191,192,193,205],[108,126,154,155,173,181,186,189,191,192,193,205],[108,118,121,126,173,181,186,189,191,192,193,205,214,223,232],[108,122,126,173,181,186,189,191,192,193,205,223],[108,117,173,181,186,189,191,192,193,205],[108,120,121,122,124,125,126,127,128,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,155,156,157,158,159,173,181,186,189,191,192,193,205],[108,126,147,150,173,181,186,189,191,192,193,205],[108,126,135,137,138,173,181,186,189,191,192,193,205],[108,124,126,137,139,173,181,186,189,191,192,193,205],[108,125,173,181,186,189,191,192,193,205],[108,118,120,126,173,181,186,189,191,192,193,205],[108,126,130,137,139,173,181,186,189,191,192,193,205],[108,130,173,181,186,189,191,192,193,205],[108,124,126,129,173,181,186,189,191,192,193,205,223],[108,118,122,126,135,173,181,186,189,191,192,193,205],[108,126,147,173,181,186,189,191,192,193,205],[108,139,173,181,186,189,191,192,193,205],[108,118,122,126,130,173,181,186,189,191,192,193,205],[108,120,126,154,173,181,186,189,191,192,193,205,214,229,232],[82,83,108,173,181,186,189,191,192,193,205],[82,108,173,181,186,189,191,192,193,205],[82,95,96,97,108,173,181,186,189,191,192,193,205],[84,96,108,173,181,186,189,191,192,193,205],[82,99,108,173,181,186,189,191,192,193,205],[82,101,108,173,181,186,189,191,192,193,205],[82,83,84,86,88,89,94,96,98,99,100,101,102,103,108,173,181,186,189,191,192,193,205],[89,90,108,173,181,186,189,191,192,193,205],[86,108,173,181,186,189,191,192,193,205],[84,86,87,89,93,108,173,181,186,189,191,192,193,205],[84,87,89,91,92,108,173,181,186,189,191,192,193,205],[86,105,108,173,181,186,189,191,192,193,205],[82,84,86,87,108,173,181,186,189,191,192,193,205],[84,85,86,108,173,181,186,189,191,192,193,205],[84,108,173,181,186,189,191,192,193,205]],"fileInfos":[{"version":"c430d44666289dae81f30fa7b2edebf186ecc91a2d4c71266ea6ae76388792e1","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"ee7bad0c15b58988daa84371e0b89d313b762ab83cb5b31b8a2d1162e8eb41c2","impliedFormat":1},{"version":"27bdc30a0e32783366a5abeda841bc22757c1797de8681bbe81fbc735eeb1c10","impliedFormat":1},{"version":"8fd575e12870e9944c7e1d62e1f5a73fcf23dd8d3a321f2a2c74c20d022283fe","impliedFormat":1},{"version":"2ab096661c711e4a81cc464fa1e6feb929a54f5340b46b0a07ac6bbf857471f0","impliedFormat":1},{"version":"080941d9f9ff9307f7e27a83bcd888b7c8270716c39af943532438932ec1d0b9","affectsGlobalScope":true,"impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"0559b1f683ac7505ae451f9a96ce4c3c92bdc71411651ca6ddb0e88baaaad6a3","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"fb0f136d372979348d59b3f5020b4cdb81b5504192b1cacff5d1fbba29378aa1","affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"a680117f487a4d2f30ea46f1b4b7f58bef1480456e18ba53ee85c2746eeca012","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"d6d7ae4d1f1f3772e2a3cde568ed08991a8ae34a080ff1151af28b7f798e22ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"959d36cddf5e7d572a65045b876f2956c973a586da58e5d26cde519184fd9b8a","affectsGlobalScope":true,"impliedFormat":1},{"version":"965f36eae237dd74e6cca203a43e9ca801ce38824ead814728a2807b1910117d","affectsGlobalScope":true,"impliedFormat":1},{"version":"3925a6c820dcb1a06506c90b1577db1fdbf7705d65b62b99dce4be75c637e26b","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a3d63ef2b853447ec4f749d3f368ce642264246e02911fcb1590d8c161b8005","affectsGlobalScope":true,"impliedFormat":1},{"version":"8cdf8847677ac7d20486e54dd3fcf09eda95812ac8ace44b4418da1bbbab6eb8","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"df83c2a6c73228b625b0beb6669c7ee2a09c914637e2d35170723ad49c0f5cd4","affectsGlobalScope":true,"impliedFormat":1},{"version":"436aaf437562f276ec2ddbee2f2cdedac7664c1e4c1d2c36839ddd582eeb3d0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e3c06ea092138bf9fa5e874a1fdbc9d54805d074bee1de31b99a11e2fec239d","affectsGlobalScope":true,"impliedFormat":1},{"version":"87dc0f382502f5bbce5129bdc0aea21e19a3abbc19259e0b43ae038a9fc4e326","affectsGlobalScope":true,"impliedFormat":1},{"version":"b1cb28af0c891c8c96b2d6b7be76bd394fddcfdb4709a20ba05a7c1605eea0f9","affectsGlobalScope":true,"impliedFormat":1},{"version":"2fef54945a13095fdb9b84f705f2b5994597640c46afeb2ce78352fab4cb3279","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac77cb3e8c6d3565793eb90a8373ee8033146315a3dbead3bde8db5eaf5e5ec6","affectsGlobalScope":true,"impliedFormat":1},{"version":"56e4ed5aab5f5920980066a9409bfaf53e6d21d3f8d020c17e4de584d29600ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ece9f17b3866cc077099c73f4983bddbcb1dc7ddb943227f1ec070f529dedd1","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a6282c8827e4b9a95f4bf4f5c205673ada31b982f50572d27103df8ceb8013c","affectsGlobalScope":true,"impliedFormat":1},{"version":"1c9319a09485199c1f7b0498f2988d6d2249793ef67edda49d1e584746be9032","affectsGlobalScope":true,"impliedFormat":1},{"version":"e3a2a0cee0f03ffdde24d89660eba2685bfbdeae955a6c67e8c4c9fd28928eeb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811c71eee4aa0ac5f7adf713323a5c41b0cf6c4e17367a34fbce379e12bbf0a4","affectsGlobalScope":true,"impliedFormat":1},{"version":"51ad4c928303041605b4d7ae32e0c1ee387d43a24cd6f1ebf4a2699e1076d4fa","affectsGlobalScope":true,"impliedFormat":1},{"version":"60037901da1a425516449b9a20073aa03386cce92f7a1fd902d7602be3a7c2e9","affectsGlobalScope":true,"impliedFormat":1},{"version":"d4b1d2c51d058fc21ec2629fff7a76249dec2e36e12960ea056e3ef89174080f","affectsGlobalScope":true,"impliedFormat":1},{"version":"22adec94ef7047a6c9d1af3cb96be87a335908bf9ef386ae9fd50eeb37f44c47","affectsGlobalScope":true,"impliedFormat":1},{"version":"196cb558a13d4533a5163286f30b0509ce0210e4b316c56c38d4c0fd2fb38405","affectsGlobalScope":true,"impliedFormat":1},{"version":"73f78680d4c08509933daf80947902f6ff41b6230f94dd002ae372620adb0f60","affectsGlobalScope":true,"impliedFormat":1},{"version":"c5239f5c01bcfa9cd32f37c496cf19c61d69d37e48be9de612b541aac915805b","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"146953018b2cd91f6ccba288c53531066d32b83aa8301cfa5541d8781e0b4de5","signature":"a609408e31205ab7e37b9b709c3dd418da31aeb8c0510cdd92c3e2a6ffa571ae"},{"version":"49862256914eebca3a35b36cc6064095d9d0bb50ba3c5d062caa330a6bd49ce7","signature":"08b1630ac89cf97f5f43f602046df4f3844ba08d69b3c705f09fecc61c7c387b"},{"version":"940112bfee7d147ba39454c04e8fea2acc6da197aa7540f5cfa5f1df837d3efb","signature":"4748c994127e708f2fc90c0ef4565077a46ab6d90de6b6c6052eab169ca847e5"},{"version":"ef50b93a202c92c16ba0aa66ac03ded00a213eea4c2fa30adbc191a944f76f12","impliedFormat":1},{"version":"74888ee11b1ca4684607fe7cbabb38bff0b4e5734afad5e11493ad612f37e1da","signature":"aa15aad042596c35de7f81d53322d5093c33e13f647519717b97d8071a7b806a"},{"version":"d856ead3263482ea571f44c1f6bd5bf6527eb6b39e44864ec5c01294e2a0b71e","signature":"f4818db57a5012eff53662a3fc2d0ef646f3f49bc8f5a587007a16d0ab518fcb"},{"version":"05a640e355bc961fa95e1b3cddcd814e63bbcfa7d19d2fa6a3eda226120109c8","signature":"fe3a893706a4844547d5755c3bc9a851ecba2b494dbfcfd88541ffdcb26f1053"},{"version":"c065683dcfeed2135593f14c51e12dcf910156fb7bc6b9dc1839a5cc21160e56","signature":"297292152d0603ecbda48142e2cdd8dd70bcd471cbb1e447afa76c68bf57a5f7"},"aa6b833f0c7d1357cca09bc316c3ccade828613f57e8fe7e7dd7b4adc579621b",{"version":"86d3d57e13ecd99a3ebf9aee931afa87eeb5b2f9a0a390ef5a5aed1170403af9","signature":"f5bec3aa371e5305c12685bfb19a8d304da22f4b0b437c2d6517877484956cf4"},{"version":"e9d85e4f800769e305ce250d4fe33aac00ece6e7f4d6eb65bf3e5ba5c54de8bc","signature":"ff09efae0e02c67e43231ae69cdc4b32d21aa18b981fb231cc92a84fe01ca3fc"},{"version":"fe4d028316eec392f71e289f3c434e29d39d270ea5e8f70c8984899444c019ef","signature":"0797cb460c903afc67bf76091dcffea48d8964963d4f0703882c4a83b1e1a137"},{"version":"bf71558eae87c1e3ce202c96caab54d27d7290dfbf57e1fad060d6c99c9eb443","signature":"1359d06b8007e756a74e95379aa560e08ff0f6fbfcc824476ee02ef6ecbb6ba6"},{"version":"296ce8ff193943f93f6ed81a911c5afc354041d4a3b208d0434525af1f3d765b","impliedFormat":1},{"version":"468a00262aee186f8073e661c3e84a144396f5cdecafce618cb63e39a823e63a","signature":"2941dc7a4d63b87a54df3f5329f76433f9a9ccea2261ab60a7a24f30142fa90b"},{"version":"d17da54daaecca7595be6b994611f6c26240d8c2d3455c2ccca2de6edfe2761b","signature":"18d4d4b13e7bb34ba7cb87d5d672f19c2ae63f6aca376b0c3565dac1781871be"},{"version":"35851857caf253961ef606cb5b86c0be954e47499d3d84f4313759d31aa8ac77","signature":"50c7e17852e1e01a66d93a385e89bd20053ce6433384d0ecb2f197deb769bedd"},{"version":"abbad583e58327df5b8906974c9f937a9065f88c7e664d407212e79921f1711c","signature":"62253cbdd79645c6574db82e498487438971b73ba4bbfdb62ebd90e6abd939d9"},{"version":"54c12da9d0c437a459dfb4580eb9c789bddb1f4e2d5e3d8c3e407fc41d62ef51","signature":"309792dc2dd6aa5eac65e2d9799c1837151574c353cac21b8751acd290fd7c8e"},{"version":"49b8cc789218574bd14e4430c263bae80995b8c613ae211ce72c8323ed56c223","signature":"0b06d5f2f25a4630503c78c34fe235797d4ee39f9c1db7fa9d162d69fa0b30a5"},{"version":"0312aa08d77e60dc09541db9a77283b84b2cc1ae1116cdddf0721036a63649b7","signature":"6143c4f0ffce4b504f7c8263d395ef2a20b6be639a047d01cb0c3635a97f50a9"},{"version":"3fcd52fe1784d172fa639dbe2c86282b2ae6ea546a069c7d469626f3eea97bda","signature":"cf10c04b28e52c6dcf30587f4dc2270eabbd95475d546b720d2d3459df3162b3"},{"version":"bec661ac7596f3fa516e5832676ed07e18913ed1be2b723a72cabab57ef14bf1","signature":"ccaae4a1019bf7f3e434c073fb4cc5e30a6149f2fae6b383f4b0aa8649390fa7"},{"version":"c1e3c688e06a10cd7e149e3fe9ab0d489f3ce72c2971093c5ed7f877f720926e","signature":"f037a960c05431515439dbb70c29403c5199e5333ca92dce7eb959d441413aec"},{"version":"4a8036fcd2744888d628d517fee72f54f7ff49c1f09eab6a48e371a412e548ad","signature":"080290c451b61bfa03dd7b32088838aaf612b3f4831aefcb299b30905ff21973"},{"version":"0ccdaa19852d25ecd84eec365c3bfa16e7859cadecf6e9ca6d0dbbbee439743f","affectsGlobalScope":true,"impliedFormat":1},{"version":"cc2110f7decca6bfb9392e30421cfa1436479e4a6756e8fec6cbc22625d4f881","affectsGlobalScope":true,"impliedFormat":1},{"version":"f53a7652392cf26ebbe4e29fd0672aa87c93bd6d0241289c13fab87b9ac35c8a","affectsGlobalScope":true,"impliedFormat":1},{"version":"e5e01375c9e124a83b52ee4b3244ed1a4d214a6cfb54ac73e164a823a4a7860a","affectsGlobalScope":true,"impliedFormat":1},{"version":"f90ae2bbce1505e67f2f6502392e318f5714bae82d2d969185c4a6cecc8af2fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"4b58e207b93a8f1c88bbf2a95ddc686ac83962b13830fe8ad3f404ffc7051fb4","affectsGlobalScope":true,"impliedFormat":1},{"version":"1fefabcb2b06736a66d2904074d56268753654805e829989a46a0161cd8412c5","affectsGlobalScope":true,"impliedFormat":1},{"version":"b00a630557d1622ad312633bdbfbdb9c6b7220d948dca9f899db30679f160074","affectsGlobalScope":true,"impliedFormat":1},{"version":"c18a99f01eb788d849ad032b31cafd49de0b19e083fe775370834c5675d7df8e","affectsGlobalScope":true,"impliedFormat":1},{"version":"5247874c2a23b9a62d178ae84f2db6a1d54e6c9a2e7e057e178cc5eea13757fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"cdcf9ea426ad970f96ac930cd176d5c69c6c24eebd9fc580e1572d6c6a88f62c","impliedFormat":1},{"version":"88809d6c1b9c78d04a133646a6feb926def05a8774c308c7c93bc32ee163d271","impliedFormat":1},{"version":"156a859e21ef3244d13afeeba4e49760a6afa035c149dda52f0c45ea8903b338","impliedFormat":1},{"version":"3ac40516c33b87f751f7507346933081a26cdb8a3e11a6b3aa07d23f803c85db","impliedFormat":1},{"version":"615754924717c0b1e293e083b83503c0a872717ad5aa60ed7f1a699eb1b4ea5c","impliedFormat":1},{"version":"14e9acf826baba0ef4b5665704084896e7bcc06f65a9ab13af7e93d27d6b7069","impliedFormat":1},{"version":"68834d631c8838c715f225509cfc3927913b9cc7a4870460b5b60c8dbdb99baf","impliedFormat":1},{"version":"829bc57ee8f287b490ab5bbc5a962fca57e432c1e38ec680ecd3ecaf12800613","impliedFormat":1},{"version":"eec76bf6b9346f3f95fa402621b889489e96930e72295b0369022f332e9b4a6a","impliedFormat":1},{"version":"3a3ff14da53d5013f3e6d8c4ad55225e3649c08786c4421ce639c00d8d589b7d","impliedFormat":1},{"version":"ea6bc8de8b59f90a7a3960005fd01988f98fd0784e14bc6922dde2e93305ec7d","impliedFormat":1},{"version":"36107995674b29284a115e21a0618c4c2751b32a8766dd4cb3ba740308b16d59","impliedFormat":1},{"version":"914a0ae30d96d71915fc519ccb4efbf2b62c0ddfb3a3fc6129151076bc01dc60","impliedFormat":1},{"version":"38004e6801340cb890afb8cb5a9fc8972297e7f88ab94026e4b0b3c61fb32f8a","impliedFormat":1},{"version":"d243db6b25788f439e7e2f03c05688e92f46764351673bb0e7b2f3631232e186","impliedFormat":1},{"version":"4d327f7d72ad0918275cea3eee49a6a8dc8114ae1d5b7f3f5d0774de75f7439a","impliedFormat":1},{"version":"149f9a9e7f04e67afa0e2a49fc0ff421035c01d6b793cfcae7d2e9f6819431e2","impliedFormat":1},{"version":"e8a9dfa4c75ef6d25df8b40eaa9c31e0a69452aaf2ced4a3f4215dbdbaa876f4","impliedFormat":1},{"version":"a70af845a2eb9dd6e2723e319e14ea7fb28b129ec1361c21509b49305448c323","impliedFormat":1},{"version":"b53dc572d4f187904207ae1166652de47aab8eeb00c254d009cb226863076b56","impliedFormat":1},{"version":"0a60a292b89ca7218b8616f78e5bbd1c96b87e048849469cccb4355e98af959a","impliedFormat":1},{"version":"0b6e25234b4eec6ed96ab138d96eb70b135690d7dd01f3dd8a8ab291c35a683a","impliedFormat":1},{"version":"9666f2f84b985b62400d2e5ab0adae9ff44de9b2a34803c2c5bd3c8325b17dc0","impliedFormat":1},{"version":"40cd35c95e9cf22cfa5bd84e96408b6fcbca55295f4ff822390abb11afbc3dca","impliedFormat":1},{"version":"b1616b8959bf557feb16369c6124a97a0e74ed6f49d1df73bb4b9ddf68acf3f3","impliedFormat":1},{"version":"f501234c5aeeeb5d7659412335227466aaacf30b952372d60afeb21c02c96348","impliedFormat":1},{"version":"40b463c6766ca1b689bfcc46d26b5e295954f32ad43e37ee6953c0a677e4ae2b","impliedFormat":1},{"version":"9ac977503f15bf13ca7c82ad9a32a782f42d43e474824e8b3bffe228fd5f2639","impliedFormat":1},{"version":"8b91ff5bb912be3ea213cbcf0075aace1f5d4ff249a0d227ed673868cb7bfabc","impliedFormat":1},{"version":"80aae6afc67faa5ac0b32b5b8bc8cc9f7fa299cff15cf09cc2e11fd28c6ae29e","impliedFormat":1},{"version":"f473cd2288991ff3221165dcf73cd5d24da30391f87e85b3dd4d0450c787a391","impliedFormat":1},{"version":"499e5b055a5aba1e1998f7311a6c441a369831c70905cc565ceac93c28083d53","impliedFormat":1},{"version":"8aee8b6d4f9f62cf3776cda1305fb18763e2aade7e13cea5bbe699112df85214","impliedFormat":1},{"version":"98498b101803bb3dde9f76a56e65c14b75db1cc8bec5f4db72be541570f74fc5","impliedFormat":1},{"version":"7cb4f431a4591b0e23002bed805dc871a874dfed6b9a3994dce68a6df73e6739","impliedFormat":1},{"version":"5d0375ca7310efb77e3ef18d068d53784faf62705e0ad04569597ae0e755c401","impliedFormat":1},{"version":"59af37caec41ecf7b2e76059c9672a49e682c1a2aa6f9d7dc78878f53aa284d6","impliedFormat":1},{"version":"addf417b9eb3f938fddf8d81e96393a165e4be0d4a8b6402292f9c634b1cb00d","impliedFormat":1},{"version":"436d7b4543b340b0f3eef4310d524242e41369b9652aa9c70428767c4dcac455","impliedFormat":1},{"version":"adf27937dba6af9f08a68c5b1d3fce0ca7d4b960c57e6d6c844e7d1a8e53adae","impliedFormat":1},{"version":"12950411eeab8563b349cb7959543d92d8d02c289ed893d78499a19becb5a8cc","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"e99963ae1e3a48ca7a7958c02f3e88bb963eb7978c28b68ae6b8c9f03309d83c","impliedFormat":1},{"version":"c3f5289820990ab66b70c7fb5b63cb674001009ff84b13de40619619a9c8175f","affectsGlobalScope":true,"impliedFormat":1},{"version":"b3275d55fac10b799c9546804126239baf020d220136163f763b55a74e50e750","affectsGlobalScope":true,"impliedFormat":1},{"version":"fa68a0a3b7cb32c00e39ee3cd31f8f15b80cac97dce51b6ee7fc14a1e8deb30b","affectsGlobalScope":true,"impliedFormat":1},{"version":"1cf059eaf468efcc649f8cf6075d3cb98e9a35a0fe9c44419ec3d2f5428d7123","affectsGlobalScope":true,"impliedFormat":1},{"version":"6c36e755bced82df7fb6ce8169265d0a7bb046ab4e2cb6d0da0cb72b22033e89","affectsGlobalScope":true,"impliedFormat":1},{"version":"e7721c4f69f93c91360c26a0a84ee885997d748237ef78ef665b153e622b36c1","affectsGlobalScope":true,"impliedFormat":1},{"version":"7a93de4ff8a63bafe62ba86b89af1df0ccb5e40bb85b0c67d6bbcfdcf96bf3d4","affectsGlobalScope":true,"impliedFormat":1},{"version":"90e85f9bc549dfe2b5749b45fe734144e96cd5d04b38eae244028794e142a77e","affectsGlobalScope":true,"impliedFormat":1},{"version":"e0a5deeb610b2a50a6350bd23df6490036a1773a8a71d70f2f9549ab009e67ee","affectsGlobalScope":true,"impliedFormat":1},{"version":"594ae90cacd813fa392ff80d2e0a8eff4e41f4a136329a940e321399dd8895b4","impliedFormat":1},{"version":"d1f333ade8ff35a409b4984e1f11956fe11c61855b0c7e9b59f0313e48b40c4a","impliedFormat":1},{"version":"0224aa4b3464895d69c413a640a19ac2166778a74eb5eb3b36b021c72d42b274","impliedFormat":1},{"version":"2e6fca0024dd8a076a886d9ec031a936ea59ad878a25b944820495d92f8381dd","affectsGlobalScope":true,"impliedFormat":1},{"version":"47d917e731d06acf182baa38ac2fbd720c3555fa9160e6a40d47994515f7f0ea","impliedFormat":1},{"version":"2fbf504c4791f9d32cd766cfe6b605bcda63289b925401953a7900db9af85348","impliedFormat":1},{"version":"ed0fb633cae35948d9e144004299a4bdf1ab912667c787b7fbffcd6d8c7b92a2","impliedFormat":1},{"version":"1678b04557dca52feab73cc67610918a7f5e25bfdba3e7fa081acd625d93106d","impliedFormat":1},{"version":"aa7b2f4e5f2fced2d34405e729ee7e09903d3330fb896a8b3d44c8fbd16be04d","impliedFormat":1},{"version":"2ea729503db9793f2691162fec3dd1118cab62e96d025f8eeb376d43ec293395","impliedFormat":1},{"version":"98fc7231d6c846a8ed19bdef026ddffe5e2182cc818be74899287421ad370a87","impliedFormat":1},{"version":"e494b286c8e27c52f8c7f945aa80ff223f2a3cd4f7a2619fa8991f1459e26f07","impliedFormat":1},{"version":"f54f5f9e10bbceba7515dfad0ffc89dffdb8d749d0604594c57a725cf6d79c20","impliedFormat":1},{"version":"41d17e1ad9a002feb11c8cdd2777e5bbc0cdb1e3f595d237e4dded0b6949983b","impliedFormat":1},{"version":"8c7e618c2a91ea7f6b5cca272a295864e92c16413be8fc56a943e8c7d5320011","affectsGlobalScope":true,"impliedFormat":1},{"version":"79a85c64bf083c5f4dd7074e804d1000c0c47301b84d48417a224decd681be30","impliedFormat":1},{"version":"6d81823c5704398a68b98e3c7a459334fc0403ad5e6953f4317b5b4919e289e4","impliedFormat":1},{"version":"4f1fd541f720030367b5d7ebfea7ae5f9edc8481422993b9a363f459c5412437","impliedFormat":1},{"version":"baa9cafc61ef8b42b6e8f7a1aa1f75841ec9c9d2f59229277ed282ccb99b72c9","impliedFormat":1},{"version":"af960bc194044cd1f0c8a9857461f0e5fd88a5e33326f38a738d6ef0e1b56fbf","impliedFormat":1},{"version":"2c2bdaa1d8ead9f68628d6d9d250e46ee8e81aa4898b4769a36956ae15e060fe","impliedFormat":1},{"version":"57a0d1b3d59063d4af2d3f8aac27cfe3c20a0f5d1faf0f8598ccf0b779637939","impliedFormat":1},{"version":"5ff4433a2deae4f85ab1377e90a7554ce6b47ae51c69a84ca30a6e22fae85834","impliedFormat":1},{"version":"82b91e4e42e6c41bc7fc1b6c2dc5eba6a2ba98375eb1f210e6ff6bba2d54177e","impliedFormat":1},{"version":"97234c5303866576f913d0ccae7d58d6322d9e803c7bf1228a3fda46ab8087b2","affectsGlobalScope":true,"impliedFormat":1},{"version":"93ecf87143cac7b9d05cffc1d6bdc075b7e4fdd48ff05f1fad85043f6ae678d3","impliedFormat":1},{"version":"73eeb740dacc45adc607a4f59f90fa9dbe2717d93d82f115f45f34e18f8d644a","impliedFormat":1},{"version":"ec501101c2a96133a6c695f934c8f6642149cc728571b29cbb7b770984c1088e","impliedFormat":1},{"version":"b214ebcf76c51b115453f69729ee8aa7b7f8eccdae2a922b568a45c2d7ff52f7","impliedFormat":1},{"version":"429c9cdfa7d126255779efd7e6d9057ced2d69c81859bbab32073bad52e9ba76","impliedFormat":1},{"version":"b17f272f903d155b9ec21791b5889b638977bc1dee181efb2bc317ce006d8c9b","impliedFormat":1},{"version":"1c16d778cc142455f35a3f1a411227b9901c671756338af12a9175958500ce66","affectsGlobalScope":true,"impliedFormat":1},{"version":"230763250f20449fa7b3c9273e1967adb0023dc890d4be1553faca658ee65971","impliedFormat":1},{"version":"c3e9078b60cb329d1221f5878e88cecfa3e74460550e605a58fcfb41a66029ff","impliedFormat":1},{"version":"1940d3dcf5bc8fdaf65d4a6fe08b9c9d6e6481186baec210d6e5ed57ced8c26b","impliedFormat":1},{"version":"441b9bb09013654aa3d050e68b06464d8959b473e85868249d9d18f692acd35b","impliedFormat":1},{"version":"bc18a1991ba681f03e13285fa1d7b99b03b67ee671b7bc936254467177543890","impliedFormat":1},{"version":"55246f15e33ff1e2e9e679b25fa9790a48db55dc63d567fe25fac8b6a0efe911","impliedFormat":1},{"version":"fa94bbf532b7af8f394b95fa310980d6e20bd2d4c871c6a6cb9f70f03750a44b","impliedFormat":1},{"version":"9f979aaeb0e4ab8456942064596786aa2720c1984fea198ae0caa526f77547b1","impliedFormat":1},{"version":"5b26c4dd672d88336bb929787c9bfb55119e80ba89ec6dc923da1c063892843e","affectsGlobalScope":true,"impliedFormat":1},{"version":"7fa2214bb0d64701bc6f9ce8cde2fd2ff8c571e0b23065fa04a8a5a6beb91511","impliedFormat":1},{"version":"79e9c2d48d413b4d1f1c574d604e663231770e8883f53ba5773b32618aefd799","impliedFormat":1},{"version":"f12624a4a8d042b68914eac1b0a16571fc1c523173fcdf2517c65d191bd5a86c","impliedFormat":1},{"version":"b4769767f13a1692a66186e01c3aa186ff808d5ff72ed36eda8c37738fb2ac92","impliedFormat":1},{"version":"841983e39bd4cbb463be385e92fda11057cab368bf27100a801c492f1d86cbaa","impliedFormat":1},{"version":"9b82f9d3cd32399278813e2de0eed4b059d362fbac5222c815e2ab01879893d7","impliedFormat":1},{"version":"1ec3f3a5f04cc42df33274fbe5c0937d9a9e06f249a7a26288d7d54f0763ffd4","impliedFormat":1},{"version":"e4156ddb25aa0e3b5303d372f26957b36778f0f6bbd4326359269873295e3058","affectsGlobalScope":true,"impliedFormat":1},{"version":"cc1b433a84cae05ddc5672d4823170af78606ad21ecef60dbc4570190cbf1357","impliedFormat":1},{"version":"e47f532d6e1617833f13a5b0710c0089d402c89c2f2b54f324e5a20e418d287a","impliedFormat":1},{"version":"7f78cfb2b343838612c192cb251746e3a7c62ac7675726a47e130d9b213f6580","impliedFormat":1},{"version":"201db9cf1687fab1adf5282fcba861f382b32303dc4f67c89d59655e78a25461","impliedFormat":1},{"version":"8e2577e7262051fd3c5bd6ca2b2056d358ff8853565720f92455860824c25188","impliedFormat":1},{"version":"7ec8d7d483f7394f9da611b10d3a0e402f76ff5c991261e6ce43a15f81ca4258","impliedFormat":1},{"version":"bb9dbb4b2ad81e3e71ec5ba4314973718555b9d04ba2a17dfbf875efecb8e2c0","impliedFormat":1},{"version":"9021dc5be8f3a87af5cede29221188a6497e2092b6889e0be212ef6b6b7153e9","impliedFormat":1},{"version":"045a210189ec63c5488410b33f9fca53d77d051599d0d6506d8048551399c5f3","impliedFormat":1},{"version":"99ab6d0d660ce4d21efb52288a39fd35bb3f556980ec5463b1ae8f304a3bbc85","impliedFormat":1},{"version":"632c45ccb4cdc2c3a80c7a36a63dd7763016e59cac5e07bfb3e37e3548957028","impliedFormat":1},{"version":"c9a2daf6cd1eb854cd5b9e424247c5e306692055738c2effd35f7871d942b76e","impliedFormat":1},{"version":"afa1c49f8e559e413d57343339db857d2a8159435cf9cf7d4deb41718fff1b88","impliedFormat":1},{"version":"e50a7130339a951e6da9e968ed5521b0997a5b0479e148914087213839b5474c","impliedFormat":1},{"version":"763e521cf114b80e0dd0e21ca49b9f8ae62e8999555a5e7bade8ce36b33001c2","impliedFormat":1},{"version":"0d14fa22c41fdc7277e6f71473b20ebc07f40f00e38875142335d5b63cdfc9d2","impliedFormat":1},{"version":"1a45f7a5f031c6c797ee90b81b274681e8501d442725997511c2625f56999f2c","impliedFormat":1},{"version":"ffcc5500e77223169833fc6eb59b3a507944a1f89574e0a1276b0ea7fc22c4a4","impliedFormat":1},{"version":"22f13de9e2fe5f0f4724797abd3d34a1cdd6e47ef81fc4933fea3b8bf4ad524b","impliedFormat":1},{"version":"e3ba509d3dce019b3190ceb2f3fc88e2610ab717122dabd91a9efaa37804040d","impliedFormat":1},{"version":"cda0cb09b995489b7f4c57f168cd31b83dcbaa7aad49612734fb3c9c73f6e4f2","impliedFormat":1},{"version":"f72f8428f3c1caa22e9c247d046603b85b442c0dae7b77a7a0bc092c18867cb7","impliedFormat":1},{"version":"195f63105abc03e72b6a176e3e34dfb5ac932b55db378fdc7874b1617e24b465","affectsGlobalScope":true,"impliedFormat":1}],"root":[[82,84],[86,89],[91,94],[96,106]],"options":{"allowJs":true,"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":2},"referencedMap":[[233,1],[236,2],[235,1],[85,1],[241,3],[170,4],[171,4],[172,5],[108,6],[173,7],[174,8],[175,9],[176,10],[177,11],[178,12],[179,13],[180,14],[181,15],[182,15],[183,16],[184,17],[185,1],[186,18],[187,19],[109,1],[107,1],[188,20],[189,21],[190,22],[232,23],[191,24],[192,25],[193,24],[194,26],[195,27],[196,28],[197,29],[198,29],[199,29],[200,30],[201,31],[202,32],[203,33],[204,34],[205,35],[206,35],[207,36],[208,1],[209,1],[210,37],[211,38],[212,39],[213,40],[214,41],[215,42],[216,43],[217,44],[218,45],[219,46],[220,47],[221,48],[222,49],[223,50],[224,51],[225,52],[226,53],[227,54],[228,55],[110,24],[111,1],[112,56],[113,57],[114,1],[115,58],[116,1],[161,59],[162,60],[163,61],[164,61],[165,62],[166,1],[167,7],[168,63],[169,60],[229,64],[230,65],[231,66],[234,1],[240,67],[238,68],[239,69],[237,70],[80,1],[81,1],[13,1],[15,1],[14,1],[2,1],[16,1],[17,1],[18,1],[19,1],[20,1],[21,1],[22,1],[23,1],[3,1],[24,1],[25,1],[4,1],[26,1],[30,1],[27,1],[28,1],[29,1],[31,1],[32,1],[33,1],[5,1],[34,1],[35,1],[36,1],[37,1],[6,1],[41,1],[38,1],[39,1],[40,1],[42,1],[7,1],[43,1],[48,1],[49,1],[44,1],[45,1],[46,1],[47,1],[8,1],[53,1],[50,1],[51,1],[52,1],[54,1],[9,1],[55,1],[56,1],[57,1],[59,1],[58,1],[60,1],[61,1],[10,1],[62,1],[63,1],[64,1],[11,1],[65,1],[66,1],[67,1],[68,1],[69,1],[1,1],[70,1],[71,1],[12,1],[75,1],[73,1],[78,1],[77,1],[72,1],[76,1],[74,1],[79,1],[135,71],[149,72],[132,73],[150,74],[159,75],[123,76],[124,77],[122,78],[158,79],[153,80],[157,81],[126,82],[136,83],[146,84],[125,85],[156,86],[120,87],[121,80],[127,83],[128,1],[134,88],[131,83],[118,89],[160,90],[151,91],[139,92],[138,83],[140,93],[143,94],[137,95],[141,96],[154,79],[129,97],[130,98],[144,99],[119,74],[148,100],[147,83],[133,98],[142,101],[145,102],[152,1],[117,1],[155,103],[95,1],[82,1],[84,104],[96,105],[98,106],[97,107],[100,105],[101,108],[83,105],[102,109],[104,110],[91,111],[90,1],[99,104],[89,112],[94,113],[93,114],[86,105],[106,115],[88,116],[87,117],[92,1],[103,118],[105,105]],"version":"5.9.3"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@procore/globalization-toolkit",
|
|
3
|
-
"version": "3.9.
|
|
3
|
+
"version": "3.9.2",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -30,6 +30,13 @@
|
|
|
30
30
|
"engines": {
|
|
31
31
|
"node": ">= 14.0.0"
|
|
32
32
|
},
|
|
33
|
+
"packageManager": "yarn@4.18.0",
|
|
34
|
+
"devEngines": {
|
|
35
|
+
"packageManager": {
|
|
36
|
+
"name": "yarn",
|
|
37
|
+
"version": "4.18.0"
|
|
38
|
+
}
|
|
39
|
+
},
|
|
33
40
|
"license": "SEE LICENSE IN LICENSE",
|
|
34
41
|
"devDependencies": {
|
|
35
42
|
"@changesets/cli": "^2.27.1",
|
|
@@ -56,5 +63,8 @@
|
|
|
56
63
|
"dependencies": {
|
|
57
64
|
"big.js": "^6.2.1",
|
|
58
65
|
"weekstart": "^2.0.0"
|
|
66
|
+
},
|
|
67
|
+
"resolutions": {
|
|
68
|
+
"human-id": "4.1.3"
|
|
59
69
|
}
|
|
60
70
|
}
|