@formatjs/intl-locale 2.4.45 → 3.0.1
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/package.json +4 -4
- package/polyfill.iife.js +2157 -196
package/polyfill.iife.js
CHANGED
|
@@ -5,34 +5,29 @@
|
|
|
5
5
|
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
6
6
|
var __getProtoOf = Object.getPrototypeOf;
|
|
7
7
|
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
8
|
-
var __markAsModule = function(target) {
|
|
9
|
-
return __defProp(target, "__esModule", { value: true });
|
|
10
|
-
};
|
|
11
8
|
var __commonJS = function(cb, mod) {
|
|
12
9
|
return function __require() {
|
|
13
10
|
return mod || (0, cb[__getOwnPropNames(cb)[0]])((mod = { exports: {} }).exports, mod), mod.exports;
|
|
14
11
|
};
|
|
15
12
|
};
|
|
16
|
-
var
|
|
17
|
-
if (
|
|
18
|
-
for (var keys = __getOwnPropNames(
|
|
13
|
+
var __copyProps = function(to, from, except, desc) {
|
|
14
|
+
if (from && typeof from === "object" || typeof from === "function")
|
|
15
|
+
for (var keys = __getOwnPropNames(from), i = 0, n = keys.length, key; i < n; i++) {
|
|
19
16
|
key = keys[i];
|
|
20
|
-
if (!__hasOwnProp.call(
|
|
21
|
-
__defProp(
|
|
22
|
-
return
|
|
23
|
-
}.bind(null, key), enumerable: !(desc = __getOwnPropDesc(
|
|
17
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
18
|
+
__defProp(to, key, { get: function(k) {
|
|
19
|
+
return from[k];
|
|
20
|
+
}.bind(null, key), enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
24
21
|
}
|
|
25
|
-
return
|
|
22
|
+
return to;
|
|
26
23
|
};
|
|
27
|
-
var __toESM = function(
|
|
28
|
-
return
|
|
29
|
-
return module.default;
|
|
30
|
-
}, enumerable: true } : { value: module, enumerable: true })), module);
|
|
24
|
+
var __toESM = function(mod, isNodeMode, target) {
|
|
25
|
+
return target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target, mod);
|
|
31
26
|
};
|
|
32
27
|
|
|
33
|
-
// node_modules/tslib/tslib.js
|
|
28
|
+
// bazel-out/darwin-fastbuild/bin/external/npm/node_modules/tslib/tslib.js
|
|
34
29
|
var require_tslib = __commonJS({
|
|
35
|
-
"node_modules/tslib/tslib.js": function(exports, module) {
|
|
30
|
+
"bazel-out/darwin-fastbuild/bin/external/npm/node_modules/tslib/tslib.js": function(exports, module) {
|
|
36
31
|
var __extends;
|
|
37
32
|
var __assign2;
|
|
38
33
|
var __rest;
|
|
@@ -56,6 +51,7 @@
|
|
|
56
51
|
var __importDefault;
|
|
57
52
|
var __classPrivateFieldGet;
|
|
58
53
|
var __classPrivateFieldSet;
|
|
54
|
+
var __classPrivateFieldIn;
|
|
59
55
|
var __createBinding;
|
|
60
56
|
(function(factory) {
|
|
61
57
|
var root = typeof global === "object" ? global : typeof self === "object" ? self : typeof this === "object" ? this : {};
|
|
@@ -248,9 +244,13 @@
|
|
|
248
244
|
__createBinding = Object.create ? function(o, m, k, k2) {
|
|
249
245
|
if (k2 === void 0)
|
|
250
246
|
k2 = k;
|
|
251
|
-
Object.
|
|
252
|
-
|
|
253
|
-
|
|
247
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
248
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
249
|
+
desc = { enumerable: true, get: function() {
|
|
250
|
+
return m[k];
|
|
251
|
+
} };
|
|
252
|
+
}
|
|
253
|
+
Object.defineProperty(o, k2, desc);
|
|
254
254
|
} : function(o, m, k, k2) {
|
|
255
255
|
if (k2 === void 0)
|
|
256
256
|
k2 = k;
|
|
@@ -381,81 +381,2129 @@
|
|
|
381
381
|
});
|
|
382
382
|
};
|
|
383
383
|
}
|
|
384
|
-
function settle(resolve, reject, d, v) {
|
|
385
|
-
Promise.resolve(v).then(function(v2) {
|
|
386
|
-
resolve({ value: v2, done: d });
|
|
387
|
-
}, reject);
|
|
384
|
+
function settle(resolve, reject, d, v) {
|
|
385
|
+
Promise.resolve(v).then(function(v2) {
|
|
386
|
+
resolve({ value: v2, done: d });
|
|
387
|
+
}, reject);
|
|
388
|
+
}
|
|
389
|
+
};
|
|
390
|
+
__makeTemplateObject = function(cooked, raw) {
|
|
391
|
+
if (Object.defineProperty) {
|
|
392
|
+
Object.defineProperty(cooked, "raw", { value: raw });
|
|
393
|
+
} else {
|
|
394
|
+
cooked.raw = raw;
|
|
395
|
+
}
|
|
396
|
+
return cooked;
|
|
397
|
+
};
|
|
398
|
+
var __setModuleDefault = Object.create ? function(o, v) {
|
|
399
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
400
|
+
} : function(o, v) {
|
|
401
|
+
o["default"] = v;
|
|
402
|
+
};
|
|
403
|
+
__importStar = function(mod) {
|
|
404
|
+
if (mod && mod.__esModule)
|
|
405
|
+
return mod;
|
|
406
|
+
var result = {};
|
|
407
|
+
if (mod != null) {
|
|
408
|
+
for (var k in mod)
|
|
409
|
+
if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k))
|
|
410
|
+
__createBinding(result, mod, k);
|
|
411
|
+
}
|
|
412
|
+
__setModuleDefault(result, mod);
|
|
413
|
+
return result;
|
|
414
|
+
};
|
|
415
|
+
__importDefault = function(mod) {
|
|
416
|
+
return mod && mod.__esModule ? mod : { "default": mod };
|
|
417
|
+
};
|
|
418
|
+
__classPrivateFieldGet = function(receiver, state, kind, f) {
|
|
419
|
+
if (kind === "a" && !f)
|
|
420
|
+
throw new TypeError("Private accessor was defined without a getter");
|
|
421
|
+
if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver))
|
|
422
|
+
throw new TypeError("Cannot read private member from an object whose class did not declare it");
|
|
423
|
+
return kind === "m" ? f : kind === "a" ? f.call(receiver) : f ? f.value : state.get(receiver);
|
|
424
|
+
};
|
|
425
|
+
__classPrivateFieldSet = function(receiver, state, value, kind, f) {
|
|
426
|
+
if (kind === "m")
|
|
427
|
+
throw new TypeError("Private method is not writable");
|
|
428
|
+
if (kind === "a" && !f)
|
|
429
|
+
throw new TypeError("Private accessor was defined without a setter");
|
|
430
|
+
if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver))
|
|
431
|
+
throw new TypeError("Cannot write private member to an object whose class did not declare it");
|
|
432
|
+
return kind === "a" ? f.call(receiver, value) : f ? f.value = value : state.set(receiver, value), value;
|
|
433
|
+
};
|
|
434
|
+
__classPrivateFieldIn = function(state, receiver) {
|
|
435
|
+
if (receiver === null || typeof receiver !== "object" && typeof receiver !== "function")
|
|
436
|
+
throw new TypeError("Cannot use 'in' operator on non-object");
|
|
437
|
+
return typeof state === "function" ? receiver === state : state.has(receiver);
|
|
438
|
+
};
|
|
439
|
+
exporter("__extends", __extends);
|
|
440
|
+
exporter("__assign", __assign2);
|
|
441
|
+
exporter("__rest", __rest);
|
|
442
|
+
exporter("__decorate", __decorate);
|
|
443
|
+
exporter("__param", __param);
|
|
444
|
+
exporter("__metadata", __metadata);
|
|
445
|
+
exporter("__awaiter", __awaiter);
|
|
446
|
+
exporter("__generator", __generator);
|
|
447
|
+
exporter("__exportStar", __exportStar);
|
|
448
|
+
exporter("__createBinding", __createBinding);
|
|
449
|
+
exporter("__values", __values);
|
|
450
|
+
exporter("__read", __read);
|
|
451
|
+
exporter("__spread", __spread);
|
|
452
|
+
exporter("__spreadArrays", __spreadArrays);
|
|
453
|
+
exporter("__spreadArray", __spreadArray2);
|
|
454
|
+
exporter("__await", __await);
|
|
455
|
+
exporter("__asyncGenerator", __asyncGenerator);
|
|
456
|
+
exporter("__asyncDelegator", __asyncDelegator);
|
|
457
|
+
exporter("__asyncValues", __asyncValues);
|
|
458
|
+
exporter("__makeTemplateObject", __makeTemplateObject);
|
|
459
|
+
exporter("__importStar", __importStar);
|
|
460
|
+
exporter("__importDefault", __importDefault);
|
|
461
|
+
exporter("__classPrivateFieldGet", __classPrivateFieldGet);
|
|
462
|
+
exporter("__classPrivateFieldSet", __classPrivateFieldSet);
|
|
463
|
+
exporter("__classPrivateFieldIn", __classPrivateFieldIn);
|
|
464
|
+
});
|
|
465
|
+
}
|
|
466
|
+
});
|
|
467
|
+
|
|
468
|
+
// bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/CanonicalizeLocaleList.js
|
|
469
|
+
var require_CanonicalizeLocaleList = __commonJS({
|
|
470
|
+
"bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/CanonicalizeLocaleList.js": function(exports) {
|
|
471
|
+
"use strict";
|
|
472
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
473
|
+
exports.CanonicalizeLocaleList = void 0;
|
|
474
|
+
function CanonicalizeLocaleList(locales) {
|
|
475
|
+
return Intl.getCanonicalLocales(locales);
|
|
476
|
+
}
|
|
477
|
+
exports.CanonicalizeLocaleList = CanonicalizeLocaleList;
|
|
478
|
+
}
|
|
479
|
+
});
|
|
480
|
+
|
|
481
|
+
// bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/CanonicalizeTimeZoneName.js
|
|
482
|
+
var require_CanonicalizeTimeZoneName = __commonJS({
|
|
483
|
+
"bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/CanonicalizeTimeZoneName.js": function(exports) {
|
|
484
|
+
"use strict";
|
|
485
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
486
|
+
exports.CanonicalizeTimeZoneName = void 0;
|
|
487
|
+
function CanonicalizeTimeZoneName(tz, _a) {
|
|
488
|
+
var tzData = _a.tzData, uppercaseLinks = _a.uppercaseLinks;
|
|
489
|
+
var uppercasedTz = tz.toUpperCase();
|
|
490
|
+
var uppercasedZones = Object.keys(tzData).reduce(function(all, z) {
|
|
491
|
+
all[z.toUpperCase()] = z;
|
|
492
|
+
return all;
|
|
493
|
+
}, {});
|
|
494
|
+
var ianaTimeZone = uppercaseLinks[uppercasedTz] || uppercasedZones[uppercasedTz];
|
|
495
|
+
if (ianaTimeZone === "Etc/UTC" || ianaTimeZone === "Etc/GMT") {
|
|
496
|
+
return "UTC";
|
|
497
|
+
}
|
|
498
|
+
return ianaTimeZone;
|
|
499
|
+
}
|
|
500
|
+
exports.CanonicalizeTimeZoneName = CanonicalizeTimeZoneName;
|
|
501
|
+
}
|
|
502
|
+
});
|
|
503
|
+
|
|
504
|
+
// bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/262.js
|
|
505
|
+
var require__ = __commonJS({
|
|
506
|
+
"bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/262.js": function(exports) {
|
|
507
|
+
"use strict";
|
|
508
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
509
|
+
exports.msFromTime = exports.OrdinaryHasInstance = exports.SecFromTime = exports.MinFromTime = exports.HourFromTime = exports.DateFromTime = exports.MonthFromTime = exports.InLeapYear = exports.DayWithinYear = exports.DaysInYear = exports.YearFromTime = exports.TimeFromYear = exports.DayFromYear = exports.WeekDay = exports.Day = exports.Type = exports.HasOwnProperty = exports.ArrayCreate = exports.SameValue = exports.ToObject = exports.TimeClip = exports.ToNumber = exports.ToString = void 0;
|
|
510
|
+
function ToString(o) {
|
|
511
|
+
if (typeof o === "symbol") {
|
|
512
|
+
throw TypeError("Cannot convert a Symbol value to a string");
|
|
513
|
+
}
|
|
514
|
+
return String(o);
|
|
515
|
+
}
|
|
516
|
+
exports.ToString = ToString;
|
|
517
|
+
function ToNumber(val) {
|
|
518
|
+
if (val === void 0) {
|
|
519
|
+
return NaN;
|
|
520
|
+
}
|
|
521
|
+
if (val === null) {
|
|
522
|
+
return 0;
|
|
523
|
+
}
|
|
524
|
+
if (typeof val === "boolean") {
|
|
525
|
+
return val ? 1 : 0;
|
|
526
|
+
}
|
|
527
|
+
if (typeof val === "number") {
|
|
528
|
+
return val;
|
|
529
|
+
}
|
|
530
|
+
if (typeof val === "symbol" || typeof val === "bigint") {
|
|
531
|
+
throw new TypeError("Cannot convert symbol/bigint to number");
|
|
532
|
+
}
|
|
533
|
+
return Number(val);
|
|
534
|
+
}
|
|
535
|
+
exports.ToNumber = ToNumber;
|
|
536
|
+
function ToInteger(n) {
|
|
537
|
+
var number = ToNumber(n);
|
|
538
|
+
if (isNaN(number) || SameValue2(number, -0)) {
|
|
539
|
+
return 0;
|
|
540
|
+
}
|
|
541
|
+
if (isFinite(number)) {
|
|
542
|
+
return number;
|
|
543
|
+
}
|
|
544
|
+
var integer = Math.floor(Math.abs(number));
|
|
545
|
+
if (number < 0) {
|
|
546
|
+
integer = -integer;
|
|
547
|
+
}
|
|
548
|
+
if (SameValue2(integer, -0)) {
|
|
549
|
+
return 0;
|
|
550
|
+
}
|
|
551
|
+
return integer;
|
|
552
|
+
}
|
|
553
|
+
function TimeClip(time) {
|
|
554
|
+
if (!isFinite(time)) {
|
|
555
|
+
return NaN;
|
|
556
|
+
}
|
|
557
|
+
if (Math.abs(time) > 8.64 * 1e15) {
|
|
558
|
+
return NaN;
|
|
559
|
+
}
|
|
560
|
+
return ToInteger(time);
|
|
561
|
+
}
|
|
562
|
+
exports.TimeClip = TimeClip;
|
|
563
|
+
function ToObject(arg) {
|
|
564
|
+
if (arg == null) {
|
|
565
|
+
throw new TypeError("undefined/null cannot be converted to object");
|
|
566
|
+
}
|
|
567
|
+
return Object(arg);
|
|
568
|
+
}
|
|
569
|
+
exports.ToObject = ToObject;
|
|
570
|
+
function SameValue2(x, y) {
|
|
571
|
+
if (Object.is) {
|
|
572
|
+
return Object.is(x, y);
|
|
573
|
+
}
|
|
574
|
+
if (x === y) {
|
|
575
|
+
return x !== 0 || 1 / x === 1 / y;
|
|
576
|
+
}
|
|
577
|
+
return x !== x && y !== y;
|
|
578
|
+
}
|
|
579
|
+
exports.SameValue = SameValue2;
|
|
580
|
+
function ArrayCreate(len) {
|
|
581
|
+
return new Array(len);
|
|
582
|
+
}
|
|
583
|
+
exports.ArrayCreate = ArrayCreate;
|
|
584
|
+
function HasOwnProperty(o, prop) {
|
|
585
|
+
return Object.prototype.hasOwnProperty.call(o, prop);
|
|
586
|
+
}
|
|
587
|
+
exports.HasOwnProperty = HasOwnProperty;
|
|
588
|
+
function Type(x) {
|
|
589
|
+
if (x === null) {
|
|
590
|
+
return "Null";
|
|
591
|
+
}
|
|
592
|
+
if (typeof x === "undefined") {
|
|
593
|
+
return "Undefined";
|
|
594
|
+
}
|
|
595
|
+
if (typeof x === "function" || typeof x === "object") {
|
|
596
|
+
return "Object";
|
|
597
|
+
}
|
|
598
|
+
if (typeof x === "number") {
|
|
599
|
+
return "Number";
|
|
600
|
+
}
|
|
601
|
+
if (typeof x === "boolean") {
|
|
602
|
+
return "Boolean";
|
|
603
|
+
}
|
|
604
|
+
if (typeof x === "string") {
|
|
605
|
+
return "String";
|
|
606
|
+
}
|
|
607
|
+
if (typeof x === "symbol") {
|
|
608
|
+
return "Symbol";
|
|
609
|
+
}
|
|
610
|
+
if (typeof x === "bigint") {
|
|
611
|
+
return "BigInt";
|
|
612
|
+
}
|
|
613
|
+
}
|
|
614
|
+
exports.Type = Type;
|
|
615
|
+
var MS_PER_DAY = 864e5;
|
|
616
|
+
function mod(x, y) {
|
|
617
|
+
return x - Math.floor(x / y) * y;
|
|
618
|
+
}
|
|
619
|
+
function Day(t) {
|
|
620
|
+
return Math.floor(t / MS_PER_DAY);
|
|
621
|
+
}
|
|
622
|
+
exports.Day = Day;
|
|
623
|
+
function WeekDay(t) {
|
|
624
|
+
return mod(Day(t) + 4, 7);
|
|
625
|
+
}
|
|
626
|
+
exports.WeekDay = WeekDay;
|
|
627
|
+
function DayFromYear(y) {
|
|
628
|
+
return Date.UTC(y, 0) / MS_PER_DAY;
|
|
629
|
+
}
|
|
630
|
+
exports.DayFromYear = DayFromYear;
|
|
631
|
+
function TimeFromYear(y) {
|
|
632
|
+
return Date.UTC(y, 0);
|
|
633
|
+
}
|
|
634
|
+
exports.TimeFromYear = TimeFromYear;
|
|
635
|
+
function YearFromTime(t) {
|
|
636
|
+
return new Date(t).getUTCFullYear();
|
|
637
|
+
}
|
|
638
|
+
exports.YearFromTime = YearFromTime;
|
|
639
|
+
function DaysInYear(y) {
|
|
640
|
+
if (y % 4 !== 0) {
|
|
641
|
+
return 365;
|
|
642
|
+
}
|
|
643
|
+
if (y % 100 !== 0) {
|
|
644
|
+
return 366;
|
|
645
|
+
}
|
|
646
|
+
if (y % 400 !== 0) {
|
|
647
|
+
return 365;
|
|
648
|
+
}
|
|
649
|
+
return 366;
|
|
650
|
+
}
|
|
651
|
+
exports.DaysInYear = DaysInYear;
|
|
652
|
+
function DayWithinYear(t) {
|
|
653
|
+
return Day(t) - DayFromYear(YearFromTime(t));
|
|
654
|
+
}
|
|
655
|
+
exports.DayWithinYear = DayWithinYear;
|
|
656
|
+
function InLeapYear(t) {
|
|
657
|
+
return DaysInYear(YearFromTime(t)) === 365 ? 0 : 1;
|
|
658
|
+
}
|
|
659
|
+
exports.InLeapYear = InLeapYear;
|
|
660
|
+
function MonthFromTime(t) {
|
|
661
|
+
var dwy = DayWithinYear(t);
|
|
662
|
+
var leap = InLeapYear(t);
|
|
663
|
+
if (dwy >= 0 && dwy < 31) {
|
|
664
|
+
return 0;
|
|
665
|
+
}
|
|
666
|
+
if (dwy < 59 + leap) {
|
|
667
|
+
return 1;
|
|
668
|
+
}
|
|
669
|
+
if (dwy < 90 + leap) {
|
|
670
|
+
return 2;
|
|
671
|
+
}
|
|
672
|
+
if (dwy < 120 + leap) {
|
|
673
|
+
return 3;
|
|
674
|
+
}
|
|
675
|
+
if (dwy < 151 + leap) {
|
|
676
|
+
return 4;
|
|
677
|
+
}
|
|
678
|
+
if (dwy < 181 + leap) {
|
|
679
|
+
return 5;
|
|
680
|
+
}
|
|
681
|
+
if (dwy < 212 + leap) {
|
|
682
|
+
return 6;
|
|
683
|
+
}
|
|
684
|
+
if (dwy < 243 + leap) {
|
|
685
|
+
return 7;
|
|
686
|
+
}
|
|
687
|
+
if (dwy < 273 + leap) {
|
|
688
|
+
return 8;
|
|
689
|
+
}
|
|
690
|
+
if (dwy < 304 + leap) {
|
|
691
|
+
return 9;
|
|
692
|
+
}
|
|
693
|
+
if (dwy < 334 + leap) {
|
|
694
|
+
return 10;
|
|
695
|
+
}
|
|
696
|
+
if (dwy < 365 + leap) {
|
|
697
|
+
return 11;
|
|
698
|
+
}
|
|
699
|
+
throw new Error("Invalid time");
|
|
700
|
+
}
|
|
701
|
+
exports.MonthFromTime = MonthFromTime;
|
|
702
|
+
function DateFromTime(t) {
|
|
703
|
+
var dwy = DayWithinYear(t);
|
|
704
|
+
var mft = MonthFromTime(t);
|
|
705
|
+
var leap = InLeapYear(t);
|
|
706
|
+
if (mft === 0) {
|
|
707
|
+
return dwy + 1;
|
|
708
|
+
}
|
|
709
|
+
if (mft === 1) {
|
|
710
|
+
return dwy - 30;
|
|
711
|
+
}
|
|
712
|
+
if (mft === 2) {
|
|
713
|
+
return dwy - 58 - leap;
|
|
714
|
+
}
|
|
715
|
+
if (mft === 3) {
|
|
716
|
+
return dwy - 89 - leap;
|
|
717
|
+
}
|
|
718
|
+
if (mft === 4) {
|
|
719
|
+
return dwy - 119 - leap;
|
|
720
|
+
}
|
|
721
|
+
if (mft === 5) {
|
|
722
|
+
return dwy - 150 - leap;
|
|
723
|
+
}
|
|
724
|
+
if (mft === 6) {
|
|
725
|
+
return dwy - 180 - leap;
|
|
726
|
+
}
|
|
727
|
+
if (mft === 7) {
|
|
728
|
+
return dwy - 211 - leap;
|
|
729
|
+
}
|
|
730
|
+
if (mft === 8) {
|
|
731
|
+
return dwy - 242 - leap;
|
|
732
|
+
}
|
|
733
|
+
if (mft === 9) {
|
|
734
|
+
return dwy - 272 - leap;
|
|
735
|
+
}
|
|
736
|
+
if (mft === 10) {
|
|
737
|
+
return dwy - 303 - leap;
|
|
738
|
+
}
|
|
739
|
+
if (mft === 11) {
|
|
740
|
+
return dwy - 333 - leap;
|
|
741
|
+
}
|
|
742
|
+
throw new Error("Invalid time");
|
|
743
|
+
}
|
|
744
|
+
exports.DateFromTime = DateFromTime;
|
|
745
|
+
var HOURS_PER_DAY = 24;
|
|
746
|
+
var MINUTES_PER_HOUR = 60;
|
|
747
|
+
var SECONDS_PER_MINUTE = 60;
|
|
748
|
+
var MS_PER_SECOND = 1e3;
|
|
749
|
+
var MS_PER_MINUTE = MS_PER_SECOND * SECONDS_PER_MINUTE;
|
|
750
|
+
var MS_PER_HOUR = MS_PER_MINUTE * MINUTES_PER_HOUR;
|
|
751
|
+
function HourFromTime(t) {
|
|
752
|
+
return mod(Math.floor(t / MS_PER_HOUR), HOURS_PER_DAY);
|
|
753
|
+
}
|
|
754
|
+
exports.HourFromTime = HourFromTime;
|
|
755
|
+
function MinFromTime(t) {
|
|
756
|
+
return mod(Math.floor(t / MS_PER_MINUTE), MINUTES_PER_HOUR);
|
|
757
|
+
}
|
|
758
|
+
exports.MinFromTime = MinFromTime;
|
|
759
|
+
function SecFromTime(t) {
|
|
760
|
+
return mod(Math.floor(t / MS_PER_SECOND), SECONDS_PER_MINUTE);
|
|
761
|
+
}
|
|
762
|
+
exports.SecFromTime = SecFromTime;
|
|
763
|
+
function IsCallable(fn) {
|
|
764
|
+
return typeof fn === "function";
|
|
765
|
+
}
|
|
766
|
+
function OrdinaryHasInstance(C, O, internalSlots) {
|
|
767
|
+
if (!IsCallable(C)) {
|
|
768
|
+
return false;
|
|
769
|
+
}
|
|
770
|
+
if (internalSlots === null || internalSlots === void 0 ? void 0 : internalSlots.boundTargetFunction) {
|
|
771
|
+
var BC = internalSlots === null || internalSlots === void 0 ? void 0 : internalSlots.boundTargetFunction;
|
|
772
|
+
return O instanceof BC;
|
|
773
|
+
}
|
|
774
|
+
if (typeof O !== "object") {
|
|
775
|
+
return false;
|
|
776
|
+
}
|
|
777
|
+
var P = C.prototype;
|
|
778
|
+
if (typeof P !== "object") {
|
|
779
|
+
throw new TypeError("OrdinaryHasInstance called on an object with an invalid prototype property.");
|
|
780
|
+
}
|
|
781
|
+
return Object.prototype.isPrototypeOf.call(P, O);
|
|
782
|
+
}
|
|
783
|
+
exports.OrdinaryHasInstance = OrdinaryHasInstance;
|
|
784
|
+
function msFromTime(t) {
|
|
785
|
+
return mod(t, MS_PER_SECOND);
|
|
786
|
+
}
|
|
787
|
+
exports.msFromTime = msFromTime;
|
|
788
|
+
}
|
|
789
|
+
});
|
|
790
|
+
|
|
791
|
+
// bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/CoerceOptionsToObject.js
|
|
792
|
+
var require_CoerceOptionsToObject = __commonJS({
|
|
793
|
+
"bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/CoerceOptionsToObject.js": function(exports) {
|
|
794
|
+
"use strict";
|
|
795
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
796
|
+
exports.CoerceOptionsToObject = void 0;
|
|
797
|
+
var _262_1 = require__();
|
|
798
|
+
function CoerceOptionsToObject2(options) {
|
|
799
|
+
if (typeof options === "undefined") {
|
|
800
|
+
return /* @__PURE__ */ Object.create(null);
|
|
801
|
+
}
|
|
802
|
+
return (0, _262_1.ToObject)(options);
|
|
803
|
+
}
|
|
804
|
+
exports.CoerceOptionsToObject = CoerceOptionsToObject2;
|
|
805
|
+
}
|
|
806
|
+
});
|
|
807
|
+
|
|
808
|
+
// bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/DefaultNumberOption.js
|
|
809
|
+
var require_DefaultNumberOption = __commonJS({
|
|
810
|
+
"bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/DefaultNumberOption.js": function(exports) {
|
|
811
|
+
"use strict";
|
|
812
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
813
|
+
exports.DefaultNumberOption = void 0;
|
|
814
|
+
function DefaultNumberOption(val, min, max, fallback) {
|
|
815
|
+
if (val !== void 0) {
|
|
816
|
+
val = Number(val);
|
|
817
|
+
if (isNaN(val) || val < min || val > max) {
|
|
818
|
+
throw new RangeError("".concat(val, " is outside of range [").concat(min, ", ").concat(max, "]"));
|
|
819
|
+
}
|
|
820
|
+
return Math.floor(val);
|
|
821
|
+
}
|
|
822
|
+
return fallback;
|
|
823
|
+
}
|
|
824
|
+
exports.DefaultNumberOption = DefaultNumberOption;
|
|
825
|
+
}
|
|
826
|
+
});
|
|
827
|
+
|
|
828
|
+
// bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/GetNumberOption.js
|
|
829
|
+
var require_GetNumberOption = __commonJS({
|
|
830
|
+
"bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/GetNumberOption.js": function(exports) {
|
|
831
|
+
"use strict";
|
|
832
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
833
|
+
exports.GetNumberOption = void 0;
|
|
834
|
+
var DefaultNumberOption_1 = require_DefaultNumberOption();
|
|
835
|
+
function GetNumberOption(options, property, minimum, maximum, fallback) {
|
|
836
|
+
var val = options[property];
|
|
837
|
+
return (0, DefaultNumberOption_1.DefaultNumberOption)(val, minimum, maximum, fallback);
|
|
838
|
+
}
|
|
839
|
+
exports.GetNumberOption = GetNumberOption;
|
|
840
|
+
}
|
|
841
|
+
});
|
|
842
|
+
|
|
843
|
+
// bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/GetOption.js
|
|
844
|
+
var require_GetOption = __commonJS({
|
|
845
|
+
"bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/GetOption.js": function(exports) {
|
|
846
|
+
"use strict";
|
|
847
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
848
|
+
exports.GetOption = void 0;
|
|
849
|
+
var _262_1 = require__();
|
|
850
|
+
function GetOption2(opts, prop, type, values, fallback) {
|
|
851
|
+
if (typeof opts !== "object") {
|
|
852
|
+
throw new TypeError("Options must be an object");
|
|
853
|
+
}
|
|
854
|
+
var value = opts[prop];
|
|
855
|
+
if (value !== void 0) {
|
|
856
|
+
if (type !== "boolean" && type !== "string") {
|
|
857
|
+
throw new TypeError("invalid type");
|
|
858
|
+
}
|
|
859
|
+
if (type === "boolean") {
|
|
860
|
+
value = Boolean(value);
|
|
861
|
+
}
|
|
862
|
+
if (type === "string") {
|
|
863
|
+
value = (0, _262_1.ToString)(value);
|
|
864
|
+
}
|
|
865
|
+
if (values !== void 0 && !values.filter(function(val) {
|
|
866
|
+
return val == value;
|
|
867
|
+
}).length) {
|
|
868
|
+
throw new RangeError("".concat(value, " is not within ").concat(values.join(", ")));
|
|
869
|
+
}
|
|
870
|
+
return value;
|
|
871
|
+
}
|
|
872
|
+
return fallback;
|
|
873
|
+
}
|
|
874
|
+
exports.GetOption = GetOption2;
|
|
875
|
+
}
|
|
876
|
+
});
|
|
877
|
+
|
|
878
|
+
// bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/GetOptionsObject.js
|
|
879
|
+
var require_GetOptionsObject = __commonJS({
|
|
880
|
+
"bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/GetOptionsObject.js": function(exports) {
|
|
881
|
+
"use strict";
|
|
882
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
883
|
+
exports.GetOptionsObject = void 0;
|
|
884
|
+
function GetOptionsObject(options) {
|
|
885
|
+
if (typeof options === "undefined") {
|
|
886
|
+
return /* @__PURE__ */ Object.create(null);
|
|
887
|
+
}
|
|
888
|
+
if (typeof options === "object") {
|
|
889
|
+
return options;
|
|
890
|
+
}
|
|
891
|
+
throw new TypeError("Options must be an object");
|
|
892
|
+
}
|
|
893
|
+
exports.GetOptionsObject = GetOptionsObject;
|
|
894
|
+
}
|
|
895
|
+
});
|
|
896
|
+
|
|
897
|
+
// bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/IsSanctionedSimpleUnitIdentifier.js
|
|
898
|
+
var require_IsSanctionedSimpleUnitIdentifier = __commonJS({
|
|
899
|
+
"bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/IsSanctionedSimpleUnitIdentifier.js": function(exports) {
|
|
900
|
+
"use strict";
|
|
901
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
902
|
+
exports.IsSanctionedSimpleUnitIdentifier = exports.SIMPLE_UNITS = exports.removeUnitNamespace = exports.SANCTIONED_UNITS = void 0;
|
|
903
|
+
exports.SANCTIONED_UNITS = [
|
|
904
|
+
"angle-degree",
|
|
905
|
+
"area-acre",
|
|
906
|
+
"area-hectare",
|
|
907
|
+
"concentr-percent",
|
|
908
|
+
"digital-bit",
|
|
909
|
+
"digital-byte",
|
|
910
|
+
"digital-gigabit",
|
|
911
|
+
"digital-gigabyte",
|
|
912
|
+
"digital-kilobit",
|
|
913
|
+
"digital-kilobyte",
|
|
914
|
+
"digital-megabit",
|
|
915
|
+
"digital-megabyte",
|
|
916
|
+
"digital-petabyte",
|
|
917
|
+
"digital-terabit",
|
|
918
|
+
"digital-terabyte",
|
|
919
|
+
"duration-day",
|
|
920
|
+
"duration-hour",
|
|
921
|
+
"duration-millisecond",
|
|
922
|
+
"duration-minute",
|
|
923
|
+
"duration-month",
|
|
924
|
+
"duration-second",
|
|
925
|
+
"duration-week",
|
|
926
|
+
"duration-year",
|
|
927
|
+
"length-centimeter",
|
|
928
|
+
"length-foot",
|
|
929
|
+
"length-inch",
|
|
930
|
+
"length-kilometer",
|
|
931
|
+
"length-meter",
|
|
932
|
+
"length-mile-scandinavian",
|
|
933
|
+
"length-mile",
|
|
934
|
+
"length-millimeter",
|
|
935
|
+
"length-yard",
|
|
936
|
+
"mass-gram",
|
|
937
|
+
"mass-kilogram",
|
|
938
|
+
"mass-ounce",
|
|
939
|
+
"mass-pound",
|
|
940
|
+
"mass-stone",
|
|
941
|
+
"temperature-celsius",
|
|
942
|
+
"temperature-fahrenheit",
|
|
943
|
+
"volume-fluid-ounce",
|
|
944
|
+
"volume-gallon",
|
|
945
|
+
"volume-liter",
|
|
946
|
+
"volume-milliliter"
|
|
947
|
+
];
|
|
948
|
+
function removeUnitNamespace(unit) {
|
|
949
|
+
return unit.slice(unit.indexOf("-") + 1);
|
|
950
|
+
}
|
|
951
|
+
exports.removeUnitNamespace = removeUnitNamespace;
|
|
952
|
+
exports.SIMPLE_UNITS = exports.SANCTIONED_UNITS.map(removeUnitNamespace);
|
|
953
|
+
function IsSanctionedSimpleUnitIdentifier(unitIdentifier) {
|
|
954
|
+
return exports.SIMPLE_UNITS.indexOf(unitIdentifier) > -1;
|
|
955
|
+
}
|
|
956
|
+
exports.IsSanctionedSimpleUnitIdentifier = IsSanctionedSimpleUnitIdentifier;
|
|
957
|
+
}
|
|
958
|
+
});
|
|
959
|
+
|
|
960
|
+
// bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/IsValidTimeZoneName.js
|
|
961
|
+
var require_IsValidTimeZoneName = __commonJS({
|
|
962
|
+
"bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/IsValidTimeZoneName.js": function(exports) {
|
|
963
|
+
"use strict";
|
|
964
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
965
|
+
exports.IsValidTimeZoneName = void 0;
|
|
966
|
+
function IsValidTimeZoneName(tz, _a) {
|
|
967
|
+
var tzData = _a.tzData, uppercaseLinks = _a.uppercaseLinks;
|
|
968
|
+
var uppercasedTz = tz.toUpperCase();
|
|
969
|
+
var zoneNames = /* @__PURE__ */ new Set();
|
|
970
|
+
var linkNames = /* @__PURE__ */ new Set();
|
|
971
|
+
Object.keys(tzData).map(function(z) {
|
|
972
|
+
return z.toUpperCase();
|
|
973
|
+
}).forEach(function(z) {
|
|
974
|
+
return zoneNames.add(z);
|
|
975
|
+
});
|
|
976
|
+
Object.keys(uppercaseLinks).forEach(function(linkName) {
|
|
977
|
+
linkNames.add(linkName.toUpperCase());
|
|
978
|
+
zoneNames.add(uppercaseLinks[linkName].toUpperCase());
|
|
979
|
+
});
|
|
980
|
+
return zoneNames.has(uppercasedTz) || linkNames.has(uppercasedTz);
|
|
981
|
+
}
|
|
982
|
+
exports.IsValidTimeZoneName = IsValidTimeZoneName;
|
|
983
|
+
}
|
|
984
|
+
});
|
|
985
|
+
|
|
986
|
+
// bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/IsWellFormedCurrencyCode.js
|
|
987
|
+
var require_IsWellFormedCurrencyCode = __commonJS({
|
|
988
|
+
"bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/IsWellFormedCurrencyCode.js": function(exports) {
|
|
989
|
+
"use strict";
|
|
990
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
991
|
+
exports.IsWellFormedCurrencyCode = void 0;
|
|
992
|
+
function toUpperCase(str) {
|
|
993
|
+
return str.replace(/([a-z])/g, function(_, c) {
|
|
994
|
+
return c.toUpperCase();
|
|
995
|
+
});
|
|
996
|
+
}
|
|
997
|
+
var NOT_A_Z_REGEX = /[^A-Z]/;
|
|
998
|
+
function IsWellFormedCurrencyCode(currency) {
|
|
999
|
+
currency = toUpperCase(currency);
|
|
1000
|
+
if (currency.length !== 3) {
|
|
1001
|
+
return false;
|
|
1002
|
+
}
|
|
1003
|
+
if (NOT_A_Z_REGEX.test(currency)) {
|
|
1004
|
+
return false;
|
|
1005
|
+
}
|
|
1006
|
+
return true;
|
|
1007
|
+
}
|
|
1008
|
+
exports.IsWellFormedCurrencyCode = IsWellFormedCurrencyCode;
|
|
1009
|
+
}
|
|
1010
|
+
});
|
|
1011
|
+
|
|
1012
|
+
// bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/IsWellFormedUnitIdentifier.js
|
|
1013
|
+
var require_IsWellFormedUnitIdentifier = __commonJS({
|
|
1014
|
+
"bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/IsWellFormedUnitIdentifier.js": function(exports) {
|
|
1015
|
+
"use strict";
|
|
1016
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
1017
|
+
exports.IsWellFormedUnitIdentifier = void 0;
|
|
1018
|
+
var IsSanctionedSimpleUnitIdentifier_1 = require_IsSanctionedSimpleUnitIdentifier();
|
|
1019
|
+
function toLowerCase(str) {
|
|
1020
|
+
return str.replace(/([A-Z])/g, function(_, c) {
|
|
1021
|
+
return c.toLowerCase();
|
|
1022
|
+
});
|
|
1023
|
+
}
|
|
1024
|
+
function IsWellFormedUnitIdentifier(unit) {
|
|
1025
|
+
unit = toLowerCase(unit);
|
|
1026
|
+
if ((0, IsSanctionedSimpleUnitIdentifier_1.IsSanctionedSimpleUnitIdentifier)(unit)) {
|
|
1027
|
+
return true;
|
|
1028
|
+
}
|
|
1029
|
+
var units = unit.split("-per-");
|
|
1030
|
+
if (units.length !== 2) {
|
|
1031
|
+
return false;
|
|
1032
|
+
}
|
|
1033
|
+
var numerator = units[0], denominator = units[1];
|
|
1034
|
+
if (!(0, IsSanctionedSimpleUnitIdentifier_1.IsSanctionedSimpleUnitIdentifier)(numerator) || !(0, IsSanctionedSimpleUnitIdentifier_1.IsSanctionedSimpleUnitIdentifier)(denominator)) {
|
|
1035
|
+
return false;
|
|
1036
|
+
}
|
|
1037
|
+
return true;
|
|
1038
|
+
}
|
|
1039
|
+
exports.IsWellFormedUnitIdentifier = IsWellFormedUnitIdentifier;
|
|
1040
|
+
}
|
|
1041
|
+
});
|
|
1042
|
+
|
|
1043
|
+
// bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/utils.js
|
|
1044
|
+
var require_utils = __commonJS({
|
|
1045
|
+
"bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/utils.js": function(exports) {
|
|
1046
|
+
"use strict";
|
|
1047
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
1048
|
+
exports.invariant = exports.UNICODE_EXTENSION_SEQUENCE_REGEX = exports.defineProperty = exports.isLiteralPart = exports.getMultiInternalSlots = exports.getInternalSlot = exports.setMultiInternalSlots = exports.setInternalSlot = exports.repeat = exports.getMagnitude = void 0;
|
|
1049
|
+
function getMagnitude(x) {
|
|
1050
|
+
return Math.floor(Math.log(x) * Math.LOG10E);
|
|
1051
|
+
}
|
|
1052
|
+
exports.getMagnitude = getMagnitude;
|
|
1053
|
+
function repeat(s, times) {
|
|
1054
|
+
if (typeof s.repeat === "function") {
|
|
1055
|
+
return s.repeat(times);
|
|
1056
|
+
}
|
|
1057
|
+
var arr = new Array(times);
|
|
1058
|
+
for (var i = 0; i < arr.length; i++) {
|
|
1059
|
+
arr[i] = s;
|
|
1060
|
+
}
|
|
1061
|
+
return arr.join("");
|
|
1062
|
+
}
|
|
1063
|
+
exports.repeat = repeat;
|
|
1064
|
+
function setInternalSlot(map, pl, field, value) {
|
|
1065
|
+
if (!map.get(pl)) {
|
|
1066
|
+
map.set(pl, /* @__PURE__ */ Object.create(null));
|
|
1067
|
+
}
|
|
1068
|
+
var slots = map.get(pl);
|
|
1069
|
+
slots[field] = value;
|
|
1070
|
+
}
|
|
1071
|
+
exports.setInternalSlot = setInternalSlot;
|
|
1072
|
+
function setMultiInternalSlots(map, pl, props) {
|
|
1073
|
+
for (var _i = 0, _a = Object.keys(props); _i < _a.length; _i++) {
|
|
1074
|
+
var k = _a[_i];
|
|
1075
|
+
setInternalSlot(map, pl, k, props[k]);
|
|
1076
|
+
}
|
|
1077
|
+
}
|
|
1078
|
+
exports.setMultiInternalSlots = setMultiInternalSlots;
|
|
1079
|
+
function getInternalSlot(map, pl, field) {
|
|
1080
|
+
return getMultiInternalSlots(map, pl, field)[field];
|
|
1081
|
+
}
|
|
1082
|
+
exports.getInternalSlot = getInternalSlot;
|
|
1083
|
+
function getMultiInternalSlots(map, pl) {
|
|
1084
|
+
var fields = [];
|
|
1085
|
+
for (var _i = 2; _i < arguments.length; _i++) {
|
|
1086
|
+
fields[_i - 2] = arguments[_i];
|
|
1087
|
+
}
|
|
1088
|
+
var slots = map.get(pl);
|
|
1089
|
+
if (!slots) {
|
|
1090
|
+
throw new TypeError("".concat(pl, " InternalSlot has not been initialized"));
|
|
1091
|
+
}
|
|
1092
|
+
return fields.reduce(function(all, f) {
|
|
1093
|
+
all[f] = slots[f];
|
|
1094
|
+
return all;
|
|
1095
|
+
}, /* @__PURE__ */ Object.create(null));
|
|
1096
|
+
}
|
|
1097
|
+
exports.getMultiInternalSlots = getMultiInternalSlots;
|
|
1098
|
+
function isLiteralPart(patternPart) {
|
|
1099
|
+
return patternPart.type === "literal";
|
|
1100
|
+
}
|
|
1101
|
+
exports.isLiteralPart = isLiteralPart;
|
|
1102
|
+
function defineProperty(target, name, _a) {
|
|
1103
|
+
var value = _a.value;
|
|
1104
|
+
Object.defineProperty(target, name, {
|
|
1105
|
+
configurable: true,
|
|
1106
|
+
enumerable: false,
|
|
1107
|
+
writable: true,
|
|
1108
|
+
value: value
|
|
1109
|
+
});
|
|
1110
|
+
}
|
|
1111
|
+
exports.defineProperty = defineProperty;
|
|
1112
|
+
exports.UNICODE_EXTENSION_SEQUENCE_REGEX = /-u(?:-[0-9a-z]{2,8})+/gi;
|
|
1113
|
+
function invariant2(condition, message, Err) {
|
|
1114
|
+
if (Err === void 0) {
|
|
1115
|
+
Err = Error;
|
|
1116
|
+
}
|
|
1117
|
+
if (!condition) {
|
|
1118
|
+
throw new Err(message);
|
|
1119
|
+
}
|
|
1120
|
+
}
|
|
1121
|
+
exports.invariant = invariant2;
|
|
1122
|
+
}
|
|
1123
|
+
});
|
|
1124
|
+
|
|
1125
|
+
// bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/NumberFormat/ComputeExponentForMagnitude.js
|
|
1126
|
+
var require_ComputeExponentForMagnitude = __commonJS({
|
|
1127
|
+
"bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/NumberFormat/ComputeExponentForMagnitude.js": function(exports) {
|
|
1128
|
+
"use strict";
|
|
1129
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
1130
|
+
exports.ComputeExponentForMagnitude = void 0;
|
|
1131
|
+
function ComputeExponentForMagnitude(numberFormat, magnitude, _a) {
|
|
1132
|
+
var getInternalSlots2 = _a.getInternalSlots;
|
|
1133
|
+
var internalSlots = getInternalSlots2(numberFormat);
|
|
1134
|
+
var notation = internalSlots.notation, dataLocaleData = internalSlots.dataLocaleData, numberingSystem = internalSlots.numberingSystem;
|
|
1135
|
+
switch (notation) {
|
|
1136
|
+
case "standard":
|
|
1137
|
+
return 0;
|
|
1138
|
+
case "scientific":
|
|
1139
|
+
return magnitude;
|
|
1140
|
+
case "engineering":
|
|
1141
|
+
return Math.floor(magnitude / 3) * 3;
|
|
1142
|
+
default: {
|
|
1143
|
+
var compactDisplay = internalSlots.compactDisplay, style = internalSlots.style, currencyDisplay = internalSlots.currencyDisplay;
|
|
1144
|
+
var thresholdMap = void 0;
|
|
1145
|
+
if (style === "currency" && currencyDisplay !== "name") {
|
|
1146
|
+
var currency = dataLocaleData.numbers.currency[numberingSystem] || dataLocaleData.numbers.currency[dataLocaleData.numbers.nu[0]];
|
|
1147
|
+
thresholdMap = currency.short;
|
|
1148
|
+
} else {
|
|
1149
|
+
var decimal = dataLocaleData.numbers.decimal[numberingSystem] || dataLocaleData.numbers.decimal[dataLocaleData.numbers.nu[0]];
|
|
1150
|
+
thresholdMap = compactDisplay === "long" ? decimal.long : decimal.short;
|
|
1151
|
+
}
|
|
1152
|
+
if (!thresholdMap) {
|
|
1153
|
+
return 0;
|
|
1154
|
+
}
|
|
1155
|
+
var num = String(Math.pow(10, magnitude));
|
|
1156
|
+
var thresholds = Object.keys(thresholdMap);
|
|
1157
|
+
if (num < thresholds[0]) {
|
|
1158
|
+
return 0;
|
|
1159
|
+
}
|
|
1160
|
+
if (num > thresholds[thresholds.length - 1]) {
|
|
1161
|
+
return thresholds[thresholds.length - 1].length - 1;
|
|
1162
|
+
}
|
|
1163
|
+
var i = thresholds.indexOf(num);
|
|
1164
|
+
if (i === -1) {
|
|
1165
|
+
return 0;
|
|
1166
|
+
}
|
|
1167
|
+
var magnitudeKey = thresholds[i];
|
|
1168
|
+
var compactPattern = thresholdMap[magnitudeKey].other;
|
|
1169
|
+
if (compactPattern === "0") {
|
|
1170
|
+
return 0;
|
|
1171
|
+
}
|
|
1172
|
+
return magnitudeKey.length - thresholdMap[magnitudeKey].other.match(/0+/)[0].length;
|
|
1173
|
+
}
|
|
1174
|
+
}
|
|
1175
|
+
}
|
|
1176
|
+
exports.ComputeExponentForMagnitude = ComputeExponentForMagnitude;
|
|
1177
|
+
}
|
|
1178
|
+
});
|
|
1179
|
+
|
|
1180
|
+
// bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/NumberFormat/ToRawPrecision.js
|
|
1181
|
+
var require_ToRawPrecision = __commonJS({
|
|
1182
|
+
"bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/NumberFormat/ToRawPrecision.js": function(exports) {
|
|
1183
|
+
"use strict";
|
|
1184
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
1185
|
+
exports.ToRawPrecision = void 0;
|
|
1186
|
+
var utils_1 = require_utils();
|
|
1187
|
+
function ToRawPrecision(x, minPrecision, maxPrecision) {
|
|
1188
|
+
var p = maxPrecision;
|
|
1189
|
+
var m;
|
|
1190
|
+
var e;
|
|
1191
|
+
var xFinal;
|
|
1192
|
+
if (x === 0) {
|
|
1193
|
+
m = (0, utils_1.repeat)("0", p);
|
|
1194
|
+
e = 0;
|
|
1195
|
+
xFinal = 0;
|
|
1196
|
+
} else {
|
|
1197
|
+
var xToString = x.toString();
|
|
1198
|
+
var xToStringExponentIndex = xToString.indexOf("e");
|
|
1199
|
+
var _a = xToString.split("e"), xToStringMantissa = _a[0], xToStringExponent = _a[1];
|
|
1200
|
+
var xToStringMantissaWithoutDecimalPoint = xToStringMantissa.replace(".", "");
|
|
1201
|
+
if (xToStringExponentIndex >= 0 && xToStringMantissaWithoutDecimalPoint.length <= p) {
|
|
1202
|
+
e = +xToStringExponent;
|
|
1203
|
+
m = xToStringMantissaWithoutDecimalPoint + (0, utils_1.repeat)("0", p - xToStringMantissaWithoutDecimalPoint.length);
|
|
1204
|
+
xFinal = x;
|
|
1205
|
+
} else {
|
|
1206
|
+
e = (0, utils_1.getMagnitude)(x);
|
|
1207
|
+
var decimalPlaceOffset = e - p + 1;
|
|
1208
|
+
var n = Math.round(adjustDecimalPlace(x, decimalPlaceOffset));
|
|
1209
|
+
if (adjustDecimalPlace(n, p - 1) >= 10) {
|
|
1210
|
+
e = e + 1;
|
|
1211
|
+
n = Math.floor(n / 10);
|
|
1212
|
+
}
|
|
1213
|
+
m = n.toString();
|
|
1214
|
+
xFinal = adjustDecimalPlace(n, p - 1 - e);
|
|
1215
|
+
}
|
|
1216
|
+
}
|
|
1217
|
+
var int;
|
|
1218
|
+
if (e >= p - 1) {
|
|
1219
|
+
m = m + (0, utils_1.repeat)("0", e - p + 1);
|
|
1220
|
+
int = e + 1;
|
|
1221
|
+
} else if (e >= 0) {
|
|
1222
|
+
m = "".concat(m.slice(0, e + 1), ".").concat(m.slice(e + 1));
|
|
1223
|
+
int = e + 1;
|
|
1224
|
+
} else {
|
|
1225
|
+
m = "0.".concat((0, utils_1.repeat)("0", -e - 1)).concat(m);
|
|
1226
|
+
int = 1;
|
|
1227
|
+
}
|
|
1228
|
+
if (m.indexOf(".") >= 0 && maxPrecision > minPrecision) {
|
|
1229
|
+
var cut = maxPrecision - minPrecision;
|
|
1230
|
+
while (cut > 0 && m[m.length - 1] === "0") {
|
|
1231
|
+
m = m.slice(0, -1);
|
|
1232
|
+
cut--;
|
|
1233
|
+
}
|
|
1234
|
+
if (m[m.length - 1] === ".") {
|
|
1235
|
+
m = m.slice(0, -1);
|
|
1236
|
+
}
|
|
1237
|
+
}
|
|
1238
|
+
return { formattedString: m, roundedNumber: xFinal, integerDigitsCount: int };
|
|
1239
|
+
function adjustDecimalPlace(x2, magnitude) {
|
|
1240
|
+
return magnitude < 0 ? x2 * Math.pow(10, -magnitude) : x2 / Math.pow(10, magnitude);
|
|
1241
|
+
}
|
|
1242
|
+
}
|
|
1243
|
+
exports.ToRawPrecision = ToRawPrecision;
|
|
1244
|
+
}
|
|
1245
|
+
});
|
|
1246
|
+
|
|
1247
|
+
// bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/NumberFormat/ToRawFixed.js
|
|
1248
|
+
var require_ToRawFixed = __commonJS({
|
|
1249
|
+
"bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/NumberFormat/ToRawFixed.js": function(exports) {
|
|
1250
|
+
"use strict";
|
|
1251
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
1252
|
+
exports.ToRawFixed = void 0;
|
|
1253
|
+
var utils_1 = require_utils();
|
|
1254
|
+
function ToRawFixed(x, minFraction, maxFraction) {
|
|
1255
|
+
var f = maxFraction;
|
|
1256
|
+
var n = Math.round(x * Math.pow(10, f));
|
|
1257
|
+
var xFinal = n / Math.pow(10, f);
|
|
1258
|
+
var m;
|
|
1259
|
+
if (n < 1e21) {
|
|
1260
|
+
m = n.toString();
|
|
1261
|
+
} else {
|
|
1262
|
+
m = n.toString();
|
|
1263
|
+
var _a = m.split("e"), mantissa = _a[0], exponent = _a[1];
|
|
1264
|
+
m = mantissa.replace(".", "");
|
|
1265
|
+
m = m + (0, utils_1.repeat)("0", Math.max(+exponent - m.length + 1, 0));
|
|
1266
|
+
}
|
|
1267
|
+
var int;
|
|
1268
|
+
if (f !== 0) {
|
|
1269
|
+
var k = m.length;
|
|
1270
|
+
if (k <= f) {
|
|
1271
|
+
var z = (0, utils_1.repeat)("0", f + 1 - k);
|
|
1272
|
+
m = z + m;
|
|
1273
|
+
k = f + 1;
|
|
1274
|
+
}
|
|
1275
|
+
var a = m.slice(0, k - f);
|
|
1276
|
+
var b = m.slice(k - f);
|
|
1277
|
+
m = "".concat(a, ".").concat(b);
|
|
1278
|
+
int = a.length;
|
|
1279
|
+
} else {
|
|
1280
|
+
int = m.length;
|
|
1281
|
+
}
|
|
1282
|
+
var cut = maxFraction - minFraction;
|
|
1283
|
+
while (cut > 0 && m[m.length - 1] === "0") {
|
|
1284
|
+
m = m.slice(0, -1);
|
|
1285
|
+
cut--;
|
|
1286
|
+
}
|
|
1287
|
+
if (m[m.length - 1] === ".") {
|
|
1288
|
+
m = m.slice(0, -1);
|
|
1289
|
+
}
|
|
1290
|
+
return { formattedString: m, roundedNumber: xFinal, integerDigitsCount: int };
|
|
1291
|
+
}
|
|
1292
|
+
exports.ToRawFixed = ToRawFixed;
|
|
1293
|
+
}
|
|
1294
|
+
});
|
|
1295
|
+
|
|
1296
|
+
// bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/NumberFormat/FormatNumericToString.js
|
|
1297
|
+
var require_FormatNumericToString = __commonJS({
|
|
1298
|
+
"bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/NumberFormat/FormatNumericToString.js": function(exports) {
|
|
1299
|
+
"use strict";
|
|
1300
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
1301
|
+
exports.FormatNumericToString = void 0;
|
|
1302
|
+
var _262_1 = require__();
|
|
1303
|
+
var ToRawPrecision_1 = require_ToRawPrecision();
|
|
1304
|
+
var utils_1 = require_utils();
|
|
1305
|
+
var ToRawFixed_1 = require_ToRawFixed();
|
|
1306
|
+
function FormatNumericToString(intlObject, x) {
|
|
1307
|
+
var isNegative = x < 0 || (0, _262_1.SameValue)(x, -0);
|
|
1308
|
+
if (isNegative) {
|
|
1309
|
+
x = -x;
|
|
1310
|
+
}
|
|
1311
|
+
var result;
|
|
1312
|
+
var rourndingType = intlObject.roundingType;
|
|
1313
|
+
switch (rourndingType) {
|
|
1314
|
+
case "significantDigits":
|
|
1315
|
+
result = (0, ToRawPrecision_1.ToRawPrecision)(x, intlObject.minimumSignificantDigits, intlObject.maximumSignificantDigits);
|
|
1316
|
+
break;
|
|
1317
|
+
case "fractionDigits":
|
|
1318
|
+
result = (0, ToRawFixed_1.ToRawFixed)(x, intlObject.minimumFractionDigits, intlObject.maximumFractionDigits);
|
|
1319
|
+
break;
|
|
1320
|
+
default:
|
|
1321
|
+
result = (0, ToRawPrecision_1.ToRawPrecision)(x, 1, 2);
|
|
1322
|
+
if (result.integerDigitsCount > 1) {
|
|
1323
|
+
result = (0, ToRawFixed_1.ToRawFixed)(x, 0, 0);
|
|
1324
|
+
}
|
|
1325
|
+
break;
|
|
1326
|
+
}
|
|
1327
|
+
x = result.roundedNumber;
|
|
1328
|
+
var string = result.formattedString;
|
|
1329
|
+
var int = result.integerDigitsCount;
|
|
1330
|
+
var minInteger = intlObject.minimumIntegerDigits;
|
|
1331
|
+
if (int < minInteger) {
|
|
1332
|
+
var forwardZeros = (0, utils_1.repeat)("0", minInteger - int);
|
|
1333
|
+
string = forwardZeros + string;
|
|
1334
|
+
}
|
|
1335
|
+
if (isNegative) {
|
|
1336
|
+
x = -x;
|
|
1337
|
+
}
|
|
1338
|
+
return { roundedNumber: x, formattedString: string };
|
|
1339
|
+
}
|
|
1340
|
+
exports.FormatNumericToString = FormatNumericToString;
|
|
1341
|
+
}
|
|
1342
|
+
});
|
|
1343
|
+
|
|
1344
|
+
// bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/NumberFormat/ComputeExponent.js
|
|
1345
|
+
var require_ComputeExponent = __commonJS({
|
|
1346
|
+
"bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/NumberFormat/ComputeExponent.js": function(exports) {
|
|
1347
|
+
"use strict";
|
|
1348
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
1349
|
+
exports.ComputeExponent = void 0;
|
|
1350
|
+
var utils_1 = require_utils();
|
|
1351
|
+
var ComputeExponentForMagnitude_1 = require_ComputeExponentForMagnitude();
|
|
1352
|
+
var FormatNumericToString_1 = require_FormatNumericToString();
|
|
1353
|
+
function ComputeExponent(numberFormat, x, _a) {
|
|
1354
|
+
var getInternalSlots2 = _a.getInternalSlots;
|
|
1355
|
+
if (x === 0) {
|
|
1356
|
+
return [0, 0];
|
|
1357
|
+
}
|
|
1358
|
+
if (x < 0) {
|
|
1359
|
+
x = -x;
|
|
1360
|
+
}
|
|
1361
|
+
var magnitude = (0, utils_1.getMagnitude)(x);
|
|
1362
|
+
var exponent = (0, ComputeExponentForMagnitude_1.ComputeExponentForMagnitude)(numberFormat, magnitude, {
|
|
1363
|
+
getInternalSlots: getInternalSlots2
|
|
1364
|
+
});
|
|
1365
|
+
x = exponent < 0 ? x * Math.pow(10, -exponent) : x / Math.pow(10, exponent);
|
|
1366
|
+
var formatNumberResult = (0, FormatNumericToString_1.FormatNumericToString)(getInternalSlots2(numberFormat), x);
|
|
1367
|
+
if (formatNumberResult.roundedNumber === 0) {
|
|
1368
|
+
return [exponent, magnitude];
|
|
1369
|
+
}
|
|
1370
|
+
var newMagnitude = (0, utils_1.getMagnitude)(formatNumberResult.roundedNumber);
|
|
1371
|
+
if (newMagnitude === magnitude - exponent) {
|
|
1372
|
+
return [exponent, magnitude];
|
|
1373
|
+
}
|
|
1374
|
+
return [
|
|
1375
|
+
(0, ComputeExponentForMagnitude_1.ComputeExponentForMagnitude)(numberFormat, magnitude + 1, {
|
|
1376
|
+
getInternalSlots: getInternalSlots2
|
|
1377
|
+
}),
|
|
1378
|
+
magnitude + 1
|
|
1379
|
+
];
|
|
1380
|
+
}
|
|
1381
|
+
exports.ComputeExponent = ComputeExponent;
|
|
1382
|
+
}
|
|
1383
|
+
});
|
|
1384
|
+
|
|
1385
|
+
// bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/NumberFormat/CurrencyDigits.js
|
|
1386
|
+
var require_CurrencyDigits = __commonJS({
|
|
1387
|
+
"bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/NumberFormat/CurrencyDigits.js": function(exports) {
|
|
1388
|
+
"use strict";
|
|
1389
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
1390
|
+
exports.CurrencyDigits = void 0;
|
|
1391
|
+
var _262_1 = require__();
|
|
1392
|
+
function CurrencyDigits(c, _a) {
|
|
1393
|
+
var currencyDigitsData = _a.currencyDigitsData;
|
|
1394
|
+
return (0, _262_1.HasOwnProperty)(currencyDigitsData, c) ? currencyDigitsData[c] : 2;
|
|
1395
|
+
}
|
|
1396
|
+
exports.CurrencyDigits = CurrencyDigits;
|
|
1397
|
+
}
|
|
1398
|
+
});
|
|
1399
|
+
|
|
1400
|
+
// bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/NumberFormat/digit-mapping.generated.js
|
|
1401
|
+
var require_digit_mapping_generated = __commonJS({
|
|
1402
|
+
"bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/NumberFormat/digit-mapping.generated.js": function(exports) {
|
|
1403
|
+
"use strict";
|
|
1404
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
1405
|
+
exports.digitMapping = void 0;
|
|
1406
|
+
exports.digitMapping = { "adlm": ["\uD83A\uDD50", "\uD83A\uDD51", "\uD83A\uDD52", "\uD83A\uDD53", "\uD83A\uDD54", "\uD83A\uDD55", "\uD83A\uDD56", "\uD83A\uDD57", "\uD83A\uDD58", "\uD83A\uDD59"], "ahom": ["\uD805\uDF30", "\uD805\uDF31", "\uD805\uDF32", "\uD805\uDF33", "\uD805\uDF34", "\uD805\uDF35", "\uD805\uDF36", "\uD805\uDF37", "\uD805\uDF38", "\uD805\uDF39"], "arab": ["\u0660", "\u0661", "\u0662", "\u0663", "\u0664", "\u0665", "\u0666", "\u0667", "\u0668", "\u0669"], "arabext": ["\u06F0", "\u06F1", "\u06F2", "\u06F3", "\u06F4", "\u06F5", "\u06F6", "\u06F7", "\u06F8", "\u06F9"], "bali": ["\u1B50", "\u1B51", "\u1B52", "\u1B53", "\u1B54", "\u1B55", "\u1B56", "\u1B57", "\u1B58", "\u1B59"], "beng": ["\u09E6", "\u09E7", "\u09E8", "\u09E9", "\u09EA", "\u09EB", "\u09EC", "\u09ED", "\u09EE", "\u09EF"], "bhks": ["\uD807\uDC50", "\uD807\uDC51", "\uD807\uDC52", "\uD807\uDC53", "\uD807\uDC54", "\uD807\uDC55", "\uD807\uDC56", "\uD807\uDC57", "\uD807\uDC58", "\uD807\uDC59"], "brah": ["\uD804\uDC66", "\uD804\uDC67", "\uD804\uDC68", "\uD804\uDC69", "\uD804\uDC6A", "\uD804\uDC6B", "\uD804\uDC6C", "\uD804\uDC6D", "\uD804\uDC6E", "\uD804\uDC6F"], "cakm": ["\uD804\uDD36", "\uD804\uDD37", "\uD804\uDD38", "\uD804\uDD39", "\uD804\uDD3A", "\uD804\uDD3B", "\uD804\uDD3C", "\uD804\uDD3D", "\uD804\uDD3E", "\uD804\uDD3F"], "cham": ["\uAA50", "\uAA51", "\uAA52", "\uAA53", "\uAA54", "\uAA55", "\uAA56", "\uAA57", "\uAA58", "\uAA59"], "deva": ["\u0966", "\u0967", "\u0968", "\u0969", "\u096A", "\u096B", "\u096C", "\u096D", "\u096E", "\u096F"], "diak": ["\uD806\uDD50", "\uD806\uDD51", "\uD806\uDD52", "\uD806\uDD53", "\uD806\uDD54", "\uD806\uDD55", "\uD806\uDD56", "\uD806\uDD57", "\uD806\uDD58", "\uD806\uDD59"], "fullwide": ["\uFF10", "\uFF11", "\uFF12", "\uFF13", "\uFF14", "\uFF15", "\uFF16", "\uFF17", "\uFF18", "\uFF19"], "gong": ["\uD807\uDDA0", "\uD807\uDDA1", "\uD807\uDDA2", "\uD807\uDDA3", "\uD807\uDDA4", "\uD807\uDDA5", "\uD807\uDDA6", "\uD807\uDDA7", "\uD807\uDDA8", "\uD807\uDDA9"], "gonm": ["\uD807\uDD50", "\uD807\uDD51", "\uD807\uDD52", "\uD807\uDD53", "\uD807\uDD54", "\uD807\uDD55", "\uD807\uDD56", "\uD807\uDD57", "\uD807\uDD58", "\uD807\uDD59"], "gujr": ["\u0AE6", "\u0AE7", "\u0AE8", "\u0AE9", "\u0AEA", "\u0AEB", "\u0AEC", "\u0AED", "\u0AEE", "\u0AEF"], "guru": ["\u0A66", "\u0A67", "\u0A68", "\u0A69", "\u0A6A", "\u0A6B", "\u0A6C", "\u0A6D", "\u0A6E", "\u0A6F"], "hanidec": ["\u3007", "\u4E00", "\u4E8C", "\u4E09", "\u56DB", "\u4E94", "\u516D", "\u4E03", "\u516B", "\u4E5D"], "hmng": ["\uD81A\uDF50", "\uD81A\uDF51", "\uD81A\uDF52", "\uD81A\uDF53", "\uD81A\uDF54", "\uD81A\uDF55", "\uD81A\uDF56", "\uD81A\uDF57", "\uD81A\uDF58", "\uD81A\uDF59"], "hmnp": ["\uD838\uDD40", "\uD838\uDD41", "\uD838\uDD42", "\uD838\uDD43", "\uD838\uDD44", "\uD838\uDD45", "\uD838\uDD46", "\uD838\uDD47", "\uD838\uDD48", "\uD838\uDD49"], "java": ["\uA9D0", "\uA9D1", "\uA9D2", "\uA9D3", "\uA9D4", "\uA9D5", "\uA9D6", "\uA9D7", "\uA9D8", "\uA9D9"], "kali": ["\uA900", "\uA901", "\uA902", "\uA903", "\uA904", "\uA905", "\uA906", "\uA907", "\uA908", "\uA909"], "khmr": ["\u17E0", "\u17E1", "\u17E2", "\u17E3", "\u17E4", "\u17E5", "\u17E6", "\u17E7", "\u17E8", "\u17E9"], "knda": ["\u0CE6", "\u0CE7", "\u0CE8", "\u0CE9", "\u0CEA", "\u0CEB", "\u0CEC", "\u0CED", "\u0CEE", "\u0CEF"], "lana": ["\u1A80", "\u1A81", "\u1A82", "\u1A83", "\u1A84", "\u1A85", "\u1A86", "\u1A87", "\u1A88", "\u1A89"], "lanatham": ["\u1A90", "\u1A91", "\u1A92", "\u1A93", "\u1A94", "\u1A95", "\u1A96", "\u1A97", "\u1A98", "\u1A99"], "laoo": ["\u0ED0", "\u0ED1", "\u0ED2", "\u0ED3", "\u0ED4", "\u0ED5", "\u0ED6", "\u0ED7", "\u0ED8", "\u0ED9"], "lepc": ["\u1A90", "\u1A91", "\u1A92", "\u1A93", "\u1A94", "\u1A95", "\u1A96", "\u1A97", "\u1A98", "\u1A99"], "limb": ["\u1946", "\u1947", "\u1948", "\u1949", "\u194A", "\u194B", "\u194C", "\u194D", "\u194E", "\u194F"], "mathbold": ["\uD835\uDFCE", "\uD835\uDFCF", "\uD835\uDFD0", "\uD835\uDFD1", "\uD835\uDFD2", "\uD835\uDFD3", "\uD835\uDFD4", "\uD835\uDFD5", "\uD835\uDFD6", "\uD835\uDFD7"], "mathdbl": ["\uD835\uDFD8", "\uD835\uDFD9", "\uD835\uDFDA", "\uD835\uDFDB", "\uD835\uDFDC", "\uD835\uDFDD", "\uD835\uDFDE", "\uD835\uDFDF", "\uD835\uDFE0", "\uD835\uDFE1"], "mathmono": ["\uD835\uDFF6", "\uD835\uDFF7", "\uD835\uDFF8", "\uD835\uDFF9", "\uD835\uDFFA", "\uD835\uDFFB", "\uD835\uDFFC", "\uD835\uDFFD", "\uD835\uDFFE", "\uD835\uDFFF"], "mathsanb": ["\uD835\uDFEC", "\uD835\uDFED", "\uD835\uDFEE", "\uD835\uDFEF", "\uD835\uDFF0", "\uD835\uDFF1", "\uD835\uDFF2", "\uD835\uDFF3", "\uD835\uDFF4", "\uD835\uDFF5"], "mathsans": ["\uD835\uDFE2", "\uD835\uDFE3", "\uD835\uDFE4", "\uD835\uDFE5", "\uD835\uDFE6", "\uD835\uDFE7", "\uD835\uDFE8", "\uD835\uDFE9", "\uD835\uDFEA", "\uD835\uDFEB"], "mlym": ["\u0D66", "\u0D67", "\u0D68", "\u0D69", "\u0D6A", "\u0D6B", "\u0D6C", "\u0D6D", "\u0D6E", "\u0D6F"], "modi": ["\uD805\uDE50", "\uD805\uDE51", "\uD805\uDE52", "\uD805\uDE53", "\uD805\uDE54", "\uD805\uDE55", "\uD805\uDE56", "\uD805\uDE57", "\uD805\uDE58", "\uD805\uDE59"], "mong": ["\u1810", "\u1811", "\u1812", "\u1813", "\u1814", "\u1815", "\u1816", "\u1817", "\u1818", "\u1819"], "mroo": ["\uD81A\uDE60", "\uD81A\uDE61", "\uD81A\uDE62", "\uD81A\uDE63", "\uD81A\uDE64", "\uD81A\uDE65", "\uD81A\uDE66", "\uD81A\uDE67", "\uD81A\uDE68", "\uD81A\uDE69"], "mtei": ["\uABF0", "\uABF1", "\uABF2", "\uABF3", "\uABF4", "\uABF5", "\uABF6", "\uABF7", "\uABF8", "\uABF9"], "mymr": ["\u1040", "\u1041", "\u1042", "\u1043", "\u1044", "\u1045", "\u1046", "\u1047", "\u1048", "\u1049"], "mymrshan": ["\u1090", "\u1091", "\u1092", "\u1093", "\u1094", "\u1095", "\u1096", "\u1097", "\u1098", "\u1099"], "mymrtlng": ["\uA9F0", "\uA9F1", "\uA9F2", "\uA9F3", "\uA9F4", "\uA9F5", "\uA9F6", "\uA9F7", "\uA9F8", "\uA9F9"], "newa": ["\uD805\uDC50", "\uD805\uDC51", "\uD805\uDC52", "\uD805\uDC53", "\uD805\uDC54", "\uD805\uDC55", "\uD805\uDC56", "\uD805\uDC57", "\uD805\uDC58", "\uD805\uDC59"], "nkoo": ["\u07C0", "\u07C1", "\u07C2", "\u07C3", "\u07C4", "\u07C5", "\u07C6", "\u07C7", "\u07C8", "\u07C9"], "olck": ["\u1C50", "\u1C51", "\u1C52", "\u1C53", "\u1C54", "\u1C55", "\u1C56", "\u1C57", "\u1C58", "\u1C59"], "orya": ["\u0B66", "\u0B67", "\u0B68", "\u0B69", "\u0B6A", "\u0B6B", "\u0B6C", "\u0B6D", "\u0B6E", "\u0B6F"], "osma": ["\uD801\uDCA0", "\uD801\uDCA1", "\uD801\uDCA2", "\uD801\uDCA3", "\uD801\uDCA4", "\uD801\uDCA5", "\uD801\uDCA6", "\uD801\uDCA7", "\uD801\uDCA8", "\uD801\uDCA9"], "rohg": ["\uD803\uDD30", "\uD803\uDD31", "\uD803\uDD32", "\uD803\uDD33", "\uD803\uDD34", "\uD803\uDD35", "\uD803\uDD36", "\uD803\uDD37", "\uD803\uDD38", "\uD803\uDD39"], "saur": ["\uA8D0", "\uA8D1", "\uA8D2", "\uA8D3", "\uA8D4", "\uA8D5", "\uA8D6", "\uA8D7", "\uA8D8", "\uA8D9"], "segment": ["\uD83E\uDFF0", "\uD83E\uDFF1", "\uD83E\uDFF2", "\uD83E\uDFF3", "\uD83E\uDFF4", "\uD83E\uDFF5", "\uD83E\uDFF6", "\uD83E\uDFF7", "\uD83E\uDFF8", "\uD83E\uDFF9"], "shrd": ["\uD804\uDDD0", "\uD804\uDDD1", "\uD804\uDDD2", "\uD804\uDDD3", "\uD804\uDDD4", "\uD804\uDDD5", "\uD804\uDDD6", "\uD804\uDDD7", "\uD804\uDDD8", "\uD804\uDDD9"], "sind": ["\uD804\uDEF0", "\uD804\uDEF1", "\uD804\uDEF2", "\uD804\uDEF3", "\uD804\uDEF4", "\uD804\uDEF5", "\uD804\uDEF6", "\uD804\uDEF7", "\uD804\uDEF8", "\uD804\uDEF9"], "sinh": ["\u0DE6", "\u0DE7", "\u0DE8", "\u0DE9", "\u0DEA", "\u0DEB", "\u0DEC", "\u0DED", "\u0DEE", "\u0DEF"], "sora": ["\uD804\uDCF0", "\uD804\uDCF1", "\uD804\uDCF2", "\uD804\uDCF3", "\uD804\uDCF4", "\uD804\uDCF5", "\uD804\uDCF6", "\uD804\uDCF7", "\uD804\uDCF8", "\uD804\uDCF9"], "sund": ["\u1BB0", "\u1BB1", "\u1BB2", "\u1BB3", "\u1BB4", "\u1BB5", "\u1BB6", "\u1BB7", "\u1BB8", "\u1BB9"], "takr": ["\uD805\uDEC0", "\uD805\uDEC1", "\uD805\uDEC2", "\uD805\uDEC3", "\uD805\uDEC4", "\uD805\uDEC5", "\uD805\uDEC6", "\uD805\uDEC7", "\uD805\uDEC8", "\uD805\uDEC9"], "talu": ["\u19D0", "\u19D1", "\u19D2", "\u19D3", "\u19D4", "\u19D5", "\u19D6", "\u19D7", "\u19D8", "\u19D9"], "tamldec": ["\u0BE6", "\u0BE7", "\u0BE8", "\u0BE9", "\u0BEA", "\u0BEB", "\u0BEC", "\u0BED", "\u0BEE", "\u0BEF"], "telu": ["\u0C66", "\u0C67", "\u0C68", "\u0C69", "\u0C6A", "\u0C6B", "\u0C6C", "\u0C6D", "\u0C6E", "\u0C6F"], "thai": ["\u0E50", "\u0E51", "\u0E52", "\u0E53", "\u0E54", "\u0E55", "\u0E56", "\u0E57", "\u0E58", "\u0E59"], "tibt": ["\u0F20", "\u0F21", "\u0F22", "\u0F23", "\u0F24", "\u0F25", "\u0F26", "\u0F27", "\u0F28", "\u0F29"], "tirh": ["\uD805\uDCD0", "\uD805\uDCD1", "\uD805\uDCD2", "\uD805\uDCD3", "\uD805\uDCD4", "\uD805\uDCD5", "\uD805\uDCD6", "\uD805\uDCD7", "\uD805\uDCD8", "\uD805\uDCD9"], "vaii": ["\u1620", "\u1621", "\u1622", "\u1623", "\u1624", "\u1625", "\u1626", "\u1627", "\u1628", "\u1629"], "wara": ["\uD806\uDCE0", "\uD806\uDCE1", "\uD806\uDCE2", "\uD806\uDCE3", "\uD806\uDCE4", "\uD806\uDCE5", "\uD806\uDCE6", "\uD806\uDCE7", "\uD806\uDCE8", "\uD806\uDCE9"], "wcho": ["\uD838\uDEF0", "\uD838\uDEF1", "\uD838\uDEF2", "\uD838\uDEF3", "\uD838\uDEF4", "\uD838\uDEF5", "\uD838\uDEF6", "\uD838\uDEF7", "\uD838\uDEF8", "\uD838\uDEF9"] };
|
|
1407
|
+
}
|
|
1408
|
+
});
|
|
1409
|
+
|
|
1410
|
+
// bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/regex.generated.js
|
|
1411
|
+
var require_regex_generated = __commonJS({
|
|
1412
|
+
"bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/regex.generated.js": function(exports) {
|
|
1413
|
+
"use strict";
|
|
1414
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
1415
|
+
exports.S_UNICODE_REGEX = void 0;
|
|
1416
|
+
exports.S_UNICODE_REGEX = /[\$\+<->\^`\|~\xA2-\xA6\xA8\xA9\xAC\xAE-\xB1\xB4\xB8\xD7\xF7\u02C2-\u02C5\u02D2-\u02DF\u02E5-\u02EB\u02ED\u02EF-\u02FF\u0375\u0384\u0385\u03F6\u0482\u058D-\u058F\u0606-\u0608\u060B\u060E\u060F\u06DE\u06E9\u06FD\u06FE\u07F6\u07FE\u07FF\u09F2\u09F3\u09FA\u09FB\u0AF1\u0B70\u0BF3-\u0BFA\u0C7F\u0D4F\u0D79\u0E3F\u0F01-\u0F03\u0F13\u0F15-\u0F17\u0F1A-\u0F1F\u0F34\u0F36\u0F38\u0FBE-\u0FC5\u0FC7-\u0FCC\u0FCE\u0FCF\u0FD5-\u0FD8\u109E\u109F\u1390-\u1399\u166D\u17DB\u1940\u19DE-\u19FF\u1B61-\u1B6A\u1B74-\u1B7C\u1FBD\u1FBF-\u1FC1\u1FCD-\u1FCF\u1FDD-\u1FDF\u1FED-\u1FEF\u1FFD\u1FFE\u2044\u2052\u207A-\u207C\u208A-\u208C\u20A0-\u20BF\u2100\u2101\u2103-\u2106\u2108\u2109\u2114\u2116-\u2118\u211E-\u2123\u2125\u2127\u2129\u212E\u213A\u213B\u2140-\u2144\u214A-\u214D\u214F\u218A\u218B\u2190-\u2307\u230C-\u2328\u232B-\u2426\u2440-\u244A\u249C-\u24E9\u2500-\u2767\u2794-\u27C4\u27C7-\u27E5\u27F0-\u2982\u2999-\u29D7\u29DC-\u29FB\u29FE-\u2B73\u2B76-\u2B95\u2B97-\u2BFF\u2CE5-\u2CEA\u2E50\u2E51\u2E80-\u2E99\u2E9B-\u2EF3\u2F00-\u2FD5\u2FF0-\u2FFB\u3004\u3012\u3013\u3020\u3036\u3037\u303E\u303F\u309B\u309C\u3190\u3191\u3196-\u319F\u31C0-\u31E3\u3200-\u321E\u322A-\u3247\u3250\u3260-\u327F\u328A-\u32B0\u32C0-\u33FF\u4DC0-\u4DFF\uA490-\uA4C6\uA700-\uA716\uA720\uA721\uA789\uA78A\uA828-\uA82B\uA836-\uA839\uAA77-\uAA79\uAB5B\uAB6A\uAB6B\uFB29\uFBB2-\uFBC1\uFDFC\uFDFD\uFE62\uFE64-\uFE66\uFE69\uFF04\uFF0B\uFF1C-\uFF1E\uFF3E\uFF40\uFF5C\uFF5E\uFFE0-\uFFE6\uFFE8-\uFFEE\uFFFC\uFFFD]|\uD800[\uDD37-\uDD3F\uDD79-\uDD89\uDD8C-\uDD8E\uDD90-\uDD9C\uDDA0\uDDD0-\uDDFC]|\uD802[\uDC77\uDC78\uDEC8]|\uD805\uDF3F|\uD807[\uDFD5-\uDFF1]|\uD81A[\uDF3C-\uDF3F\uDF45]|\uD82F\uDC9C|\uD834[\uDC00-\uDCF5\uDD00-\uDD26\uDD29-\uDD64\uDD6A-\uDD6C\uDD83\uDD84\uDD8C-\uDDA9\uDDAE-\uDDE8\uDE00-\uDE41\uDE45\uDF00-\uDF56]|\uD835[\uDEC1\uDEDB\uDEFB\uDF15\uDF35\uDF4F\uDF6F\uDF89\uDFA9\uDFC3]|\uD836[\uDC00-\uDDFF\uDE37-\uDE3A\uDE6D-\uDE74\uDE76-\uDE83\uDE85\uDE86]|\uD838[\uDD4F\uDEFF]|\uD83B[\uDCAC\uDCB0\uDD2E\uDEF0\uDEF1]|\uD83C[\uDC00-\uDC2B\uDC30-\uDC93\uDCA0-\uDCAE\uDCB1-\uDCBF\uDCC1-\uDCCF\uDCD1-\uDCF5\uDD0D-\uDDAD\uDDE6-\uDE02\uDE10-\uDE3B\uDE40-\uDE48\uDE50\uDE51\uDE60-\uDE65\uDF00-\uDFFF]|\uD83D[\uDC00-\uDED7\uDEE0-\uDEEC\uDEF0-\uDEFC\uDF00-\uDF73\uDF80-\uDFD8\uDFE0-\uDFEB]|\uD83E[\uDC00-\uDC0B\uDC10-\uDC47\uDC50-\uDC59\uDC60-\uDC87\uDC90-\uDCAD\uDCB0\uDCB1\uDD00-\uDD78\uDD7A-\uDDCB\uDDCD-\uDE53\uDE60-\uDE6D\uDE70-\uDE74\uDE78-\uDE7A\uDE80-\uDE86\uDE90-\uDEA8\uDEB0-\uDEB6\uDEC0-\uDEC2\uDED0-\uDED6\uDF00-\uDF92\uDF94-\uDFCA]/;
|
|
1417
|
+
}
|
|
1418
|
+
});
|
|
1419
|
+
|
|
1420
|
+
// bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/NumberFormat/format_to_parts.js
|
|
1421
|
+
var require_format_to_parts = __commonJS({
|
|
1422
|
+
"bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/NumberFormat/format_to_parts.js": function(exports) {
|
|
1423
|
+
"use strict";
|
|
1424
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
1425
|
+
var ToRawFixed_1 = require_ToRawFixed();
|
|
1426
|
+
var digit_mapping_generated_1 = require_digit_mapping_generated();
|
|
1427
|
+
var regex_generated_1 = require_regex_generated();
|
|
1428
|
+
var CARET_S_UNICODE_REGEX = new RegExp("^".concat(regex_generated_1.S_UNICODE_REGEX.source));
|
|
1429
|
+
var S_DOLLAR_UNICODE_REGEX = new RegExp("".concat(regex_generated_1.S_UNICODE_REGEX.source, "$"));
|
|
1430
|
+
var CLDR_NUMBER_PATTERN = /[#0](?:[\.,][#0]+)*/g;
|
|
1431
|
+
function formatToParts(numberResult, data, pl, options) {
|
|
1432
|
+
var sign = numberResult.sign, exponent = numberResult.exponent, magnitude = numberResult.magnitude;
|
|
1433
|
+
var notation = options.notation, style = options.style, numberingSystem = options.numberingSystem;
|
|
1434
|
+
var defaultNumberingSystem = data.numbers.nu[0];
|
|
1435
|
+
var compactNumberPattern = null;
|
|
1436
|
+
if (notation === "compact" && magnitude) {
|
|
1437
|
+
compactNumberPattern = getCompactDisplayPattern(numberResult, pl, data, style, options.compactDisplay, options.currencyDisplay, numberingSystem);
|
|
1438
|
+
}
|
|
1439
|
+
var nonNameCurrencyPart;
|
|
1440
|
+
if (style === "currency" && options.currencyDisplay !== "name") {
|
|
1441
|
+
var byCurrencyDisplay = data.currencies[options.currency];
|
|
1442
|
+
if (byCurrencyDisplay) {
|
|
1443
|
+
switch (options.currencyDisplay) {
|
|
1444
|
+
case "code":
|
|
1445
|
+
nonNameCurrencyPart = options.currency;
|
|
1446
|
+
break;
|
|
1447
|
+
case "symbol":
|
|
1448
|
+
nonNameCurrencyPart = byCurrencyDisplay.symbol;
|
|
1449
|
+
break;
|
|
1450
|
+
default:
|
|
1451
|
+
nonNameCurrencyPart = byCurrencyDisplay.narrow;
|
|
1452
|
+
break;
|
|
1453
|
+
}
|
|
1454
|
+
} else {
|
|
1455
|
+
nonNameCurrencyPart = options.currency;
|
|
1456
|
+
}
|
|
1457
|
+
}
|
|
1458
|
+
var numberPattern;
|
|
1459
|
+
if (!compactNumberPattern) {
|
|
1460
|
+
if (style === "decimal" || style === "unit" || style === "currency" && options.currencyDisplay === "name") {
|
|
1461
|
+
var decimalData = data.numbers.decimal[numberingSystem] || data.numbers.decimal[defaultNumberingSystem];
|
|
1462
|
+
numberPattern = getPatternForSign(decimalData.standard, sign);
|
|
1463
|
+
} else if (style === "currency") {
|
|
1464
|
+
var currencyData = data.numbers.currency[numberingSystem] || data.numbers.currency[defaultNumberingSystem];
|
|
1465
|
+
numberPattern = getPatternForSign(currencyData[options.currencySign], sign);
|
|
1466
|
+
} else {
|
|
1467
|
+
var percentPattern = data.numbers.percent[numberingSystem] || data.numbers.percent[defaultNumberingSystem];
|
|
1468
|
+
numberPattern = getPatternForSign(percentPattern, sign);
|
|
1469
|
+
}
|
|
1470
|
+
} else {
|
|
1471
|
+
numberPattern = compactNumberPattern;
|
|
1472
|
+
}
|
|
1473
|
+
var decimalNumberPattern = CLDR_NUMBER_PATTERN.exec(numberPattern)[0];
|
|
1474
|
+
numberPattern = numberPattern.replace(CLDR_NUMBER_PATTERN, "{0}").replace(/'(.)'/g, "$1");
|
|
1475
|
+
if (style === "currency" && options.currencyDisplay !== "name") {
|
|
1476
|
+
var currencyData = data.numbers.currency[numberingSystem] || data.numbers.currency[defaultNumberingSystem];
|
|
1477
|
+
var afterCurrency = currencyData.currencySpacing.afterInsertBetween;
|
|
1478
|
+
if (afterCurrency && !S_DOLLAR_UNICODE_REGEX.test(nonNameCurrencyPart)) {
|
|
1479
|
+
numberPattern = numberPattern.replace("\xA4{0}", "\xA4".concat(afterCurrency, "{0}"));
|
|
1480
|
+
}
|
|
1481
|
+
var beforeCurrency = currencyData.currencySpacing.beforeInsertBetween;
|
|
1482
|
+
if (beforeCurrency && !CARET_S_UNICODE_REGEX.test(nonNameCurrencyPart)) {
|
|
1483
|
+
numberPattern = numberPattern.replace("{0}\xA4", "{0}".concat(beforeCurrency, "\xA4"));
|
|
1484
|
+
}
|
|
1485
|
+
}
|
|
1486
|
+
var numberPatternParts = numberPattern.split(/({c:[^}]+}|\{0\}|[¤%\-\+])/g);
|
|
1487
|
+
var numberParts = [];
|
|
1488
|
+
var symbols = data.numbers.symbols[numberingSystem] || data.numbers.symbols[defaultNumberingSystem];
|
|
1489
|
+
for (var _i = 0, numberPatternParts_1 = numberPatternParts; _i < numberPatternParts_1.length; _i++) {
|
|
1490
|
+
var part = numberPatternParts_1[_i];
|
|
1491
|
+
if (!part) {
|
|
1492
|
+
continue;
|
|
1493
|
+
}
|
|
1494
|
+
switch (part) {
|
|
1495
|
+
case "{0}": {
|
|
1496
|
+
numberParts.push.apply(numberParts, paritionNumberIntoParts(symbols, numberResult, notation, exponent, numberingSystem, !compactNumberPattern && options.useGrouping, decimalNumberPattern));
|
|
1497
|
+
break;
|
|
1498
|
+
}
|
|
1499
|
+
case "-":
|
|
1500
|
+
numberParts.push({ type: "minusSign", value: symbols.minusSign });
|
|
1501
|
+
break;
|
|
1502
|
+
case "+":
|
|
1503
|
+
numberParts.push({ type: "plusSign", value: symbols.plusSign });
|
|
1504
|
+
break;
|
|
1505
|
+
case "%":
|
|
1506
|
+
numberParts.push({ type: "percentSign", value: symbols.percentSign });
|
|
1507
|
+
break;
|
|
1508
|
+
case "\xA4":
|
|
1509
|
+
numberParts.push({ type: "currency", value: nonNameCurrencyPart });
|
|
1510
|
+
break;
|
|
1511
|
+
default:
|
|
1512
|
+
if (/^\{c:/.test(part)) {
|
|
1513
|
+
numberParts.push({
|
|
1514
|
+
type: "compact",
|
|
1515
|
+
value: part.substring(3, part.length - 1)
|
|
1516
|
+
});
|
|
1517
|
+
} else {
|
|
1518
|
+
numberParts.push({ type: "literal", value: part });
|
|
1519
|
+
}
|
|
1520
|
+
break;
|
|
1521
|
+
}
|
|
1522
|
+
}
|
|
1523
|
+
switch (style) {
|
|
1524
|
+
case "currency": {
|
|
1525
|
+
if (options.currencyDisplay === "name") {
|
|
1526
|
+
var unitPattern = (data.numbers.currency[numberingSystem] || data.numbers.currency[defaultNumberingSystem]).unitPattern;
|
|
1527
|
+
var unitName = void 0;
|
|
1528
|
+
var currencyNameData = data.currencies[options.currency];
|
|
1529
|
+
if (currencyNameData) {
|
|
1530
|
+
unitName = selectPlural(pl, numberResult.roundedNumber * Math.pow(10, exponent), currencyNameData.displayName);
|
|
1531
|
+
} else {
|
|
1532
|
+
unitName = options.currency;
|
|
1533
|
+
}
|
|
1534
|
+
var unitPatternParts = unitPattern.split(/(\{[01]\})/g);
|
|
1535
|
+
var result = [];
|
|
1536
|
+
for (var _a = 0, unitPatternParts_1 = unitPatternParts; _a < unitPatternParts_1.length; _a++) {
|
|
1537
|
+
var part = unitPatternParts_1[_a];
|
|
1538
|
+
switch (part) {
|
|
1539
|
+
case "{0}":
|
|
1540
|
+
result.push.apply(result, numberParts);
|
|
1541
|
+
break;
|
|
1542
|
+
case "{1}":
|
|
1543
|
+
result.push({ type: "currency", value: unitName });
|
|
1544
|
+
break;
|
|
1545
|
+
default:
|
|
1546
|
+
if (part) {
|
|
1547
|
+
result.push({ type: "literal", value: part });
|
|
1548
|
+
}
|
|
1549
|
+
break;
|
|
1550
|
+
}
|
|
1551
|
+
}
|
|
1552
|
+
return result;
|
|
1553
|
+
} else {
|
|
1554
|
+
return numberParts;
|
|
1555
|
+
}
|
|
1556
|
+
}
|
|
1557
|
+
case "unit": {
|
|
1558
|
+
var unit = options.unit, unitDisplay = options.unitDisplay;
|
|
1559
|
+
var unitData = data.units.simple[unit];
|
|
1560
|
+
var unitPattern = void 0;
|
|
1561
|
+
if (unitData) {
|
|
1562
|
+
unitPattern = selectPlural(pl, numberResult.roundedNumber * Math.pow(10, exponent), data.units.simple[unit][unitDisplay]);
|
|
1563
|
+
} else {
|
|
1564
|
+
var _b = unit.split("-per-"), numeratorUnit = _b[0], denominatorUnit = _b[1];
|
|
1565
|
+
unitData = data.units.simple[numeratorUnit];
|
|
1566
|
+
var numeratorUnitPattern = selectPlural(pl, numberResult.roundedNumber * Math.pow(10, exponent), data.units.simple[numeratorUnit][unitDisplay]);
|
|
1567
|
+
var perUnitPattern = data.units.simple[denominatorUnit].perUnit[unitDisplay];
|
|
1568
|
+
if (perUnitPattern) {
|
|
1569
|
+
unitPattern = perUnitPattern.replace("{0}", numeratorUnitPattern);
|
|
1570
|
+
} else {
|
|
1571
|
+
var perPattern = data.units.compound.per[unitDisplay];
|
|
1572
|
+
var denominatorPattern = selectPlural(pl, 1, data.units.simple[denominatorUnit][unitDisplay]);
|
|
1573
|
+
unitPattern = unitPattern = perPattern.replace("{0}", numeratorUnitPattern).replace("{1}", denominatorPattern.replace("{0}", ""));
|
|
1574
|
+
}
|
|
1575
|
+
}
|
|
1576
|
+
var result = [];
|
|
1577
|
+
for (var _c = 0, _d = unitPattern.split(/(\s*\{0\}\s*)/); _c < _d.length; _c++) {
|
|
1578
|
+
var part = _d[_c];
|
|
1579
|
+
var interpolateMatch = /^(\s*)\{0\}(\s*)$/.exec(part);
|
|
1580
|
+
if (interpolateMatch) {
|
|
1581
|
+
if (interpolateMatch[1]) {
|
|
1582
|
+
result.push({ type: "literal", value: interpolateMatch[1] });
|
|
1583
|
+
}
|
|
1584
|
+
result.push.apply(result, numberParts);
|
|
1585
|
+
if (interpolateMatch[2]) {
|
|
1586
|
+
result.push({ type: "literal", value: interpolateMatch[2] });
|
|
1587
|
+
}
|
|
1588
|
+
} else if (part) {
|
|
1589
|
+
result.push({ type: "unit", value: part });
|
|
1590
|
+
}
|
|
1591
|
+
}
|
|
1592
|
+
return result;
|
|
1593
|
+
}
|
|
1594
|
+
default:
|
|
1595
|
+
return numberParts;
|
|
1596
|
+
}
|
|
1597
|
+
}
|
|
1598
|
+
exports.default = formatToParts;
|
|
1599
|
+
function paritionNumberIntoParts(symbols, numberResult, notation, exponent, numberingSystem, useGrouping, decimalNumberPattern) {
|
|
1600
|
+
var result = [];
|
|
1601
|
+
var n = numberResult.formattedString, x = numberResult.roundedNumber;
|
|
1602
|
+
if (isNaN(x)) {
|
|
1603
|
+
return [{ type: "nan", value: n }];
|
|
1604
|
+
} else if (!isFinite(x)) {
|
|
1605
|
+
return [{ type: "infinity", value: n }];
|
|
1606
|
+
}
|
|
1607
|
+
var digitReplacementTable = digit_mapping_generated_1.digitMapping[numberingSystem];
|
|
1608
|
+
if (digitReplacementTable) {
|
|
1609
|
+
n = n.replace(/\d/g, function(digit) {
|
|
1610
|
+
return digitReplacementTable[+digit] || digit;
|
|
1611
|
+
});
|
|
1612
|
+
}
|
|
1613
|
+
var decimalSepIndex = n.indexOf(".");
|
|
1614
|
+
var integer;
|
|
1615
|
+
var fraction;
|
|
1616
|
+
if (decimalSepIndex > 0) {
|
|
1617
|
+
integer = n.slice(0, decimalSepIndex);
|
|
1618
|
+
fraction = n.slice(decimalSepIndex + 1);
|
|
1619
|
+
} else {
|
|
1620
|
+
integer = n;
|
|
1621
|
+
}
|
|
1622
|
+
if (useGrouping && (notation !== "compact" || x >= 1e4)) {
|
|
1623
|
+
var groupSepSymbol = symbols.group;
|
|
1624
|
+
var groups = [];
|
|
1625
|
+
var integerNumberPattern = decimalNumberPattern.split(".")[0];
|
|
1626
|
+
var patternGroups = integerNumberPattern.split(",");
|
|
1627
|
+
var primaryGroupingSize = 3;
|
|
1628
|
+
var secondaryGroupingSize = 3;
|
|
1629
|
+
if (patternGroups.length > 1) {
|
|
1630
|
+
primaryGroupingSize = patternGroups[patternGroups.length - 1].length;
|
|
1631
|
+
}
|
|
1632
|
+
if (patternGroups.length > 2) {
|
|
1633
|
+
secondaryGroupingSize = patternGroups[patternGroups.length - 2].length;
|
|
1634
|
+
}
|
|
1635
|
+
var i = integer.length - primaryGroupingSize;
|
|
1636
|
+
if (i > 0) {
|
|
1637
|
+
groups.push(integer.slice(i, i + primaryGroupingSize));
|
|
1638
|
+
for (i -= secondaryGroupingSize; i > 0; i -= secondaryGroupingSize) {
|
|
1639
|
+
groups.push(integer.slice(i, i + secondaryGroupingSize));
|
|
1640
|
+
}
|
|
1641
|
+
groups.push(integer.slice(0, i + secondaryGroupingSize));
|
|
1642
|
+
} else {
|
|
1643
|
+
groups.push(integer);
|
|
1644
|
+
}
|
|
1645
|
+
while (groups.length > 0) {
|
|
1646
|
+
var integerGroup = groups.pop();
|
|
1647
|
+
result.push({ type: "integer", value: integerGroup });
|
|
1648
|
+
if (groups.length > 0) {
|
|
1649
|
+
result.push({ type: "group", value: groupSepSymbol });
|
|
1650
|
+
}
|
|
1651
|
+
}
|
|
1652
|
+
} else {
|
|
1653
|
+
result.push({ type: "integer", value: integer });
|
|
1654
|
+
}
|
|
1655
|
+
if (fraction !== void 0) {
|
|
1656
|
+
result.push({ type: "decimal", value: symbols.decimal }, { type: "fraction", value: fraction });
|
|
1657
|
+
}
|
|
1658
|
+
if ((notation === "scientific" || notation === "engineering") && isFinite(x)) {
|
|
1659
|
+
result.push({ type: "exponentSeparator", value: symbols.exponential });
|
|
1660
|
+
if (exponent < 0) {
|
|
1661
|
+
result.push({ type: "exponentMinusSign", value: symbols.minusSign });
|
|
1662
|
+
exponent = -exponent;
|
|
1663
|
+
}
|
|
1664
|
+
var exponentResult = (0, ToRawFixed_1.ToRawFixed)(exponent, 0, 0);
|
|
1665
|
+
result.push({
|
|
1666
|
+
type: "exponentInteger",
|
|
1667
|
+
value: exponentResult.formattedString
|
|
1668
|
+
});
|
|
1669
|
+
}
|
|
1670
|
+
return result;
|
|
1671
|
+
}
|
|
1672
|
+
function getPatternForSign(pattern, sign) {
|
|
1673
|
+
if (pattern.indexOf(";") < 0) {
|
|
1674
|
+
pattern = "".concat(pattern, ";-").concat(pattern);
|
|
1675
|
+
}
|
|
1676
|
+
var _a = pattern.split(";"), zeroPattern = _a[0], negativePattern = _a[1];
|
|
1677
|
+
switch (sign) {
|
|
1678
|
+
case 0:
|
|
1679
|
+
return zeroPattern;
|
|
1680
|
+
case -1:
|
|
1681
|
+
return negativePattern;
|
|
1682
|
+
default:
|
|
1683
|
+
return negativePattern.indexOf("-") >= 0 ? negativePattern.replace(/-/g, "+") : "+".concat(zeroPattern);
|
|
1684
|
+
}
|
|
1685
|
+
}
|
|
1686
|
+
function getCompactDisplayPattern(numberResult, pl, data, style, compactDisplay, currencyDisplay, numberingSystem) {
|
|
1687
|
+
var _a;
|
|
1688
|
+
var roundedNumber = numberResult.roundedNumber, sign = numberResult.sign, magnitude = numberResult.magnitude;
|
|
1689
|
+
var magnitudeKey = String(Math.pow(10, magnitude));
|
|
1690
|
+
var defaultNumberingSystem = data.numbers.nu[0];
|
|
1691
|
+
var pattern;
|
|
1692
|
+
if (style === "currency" && currencyDisplay !== "name") {
|
|
1693
|
+
var byNumberingSystem = data.numbers.currency;
|
|
1694
|
+
var currencyData = byNumberingSystem[numberingSystem] || byNumberingSystem[defaultNumberingSystem];
|
|
1695
|
+
var compactPluralRules = (_a = currencyData.short) === null || _a === void 0 ? void 0 : _a[magnitudeKey];
|
|
1696
|
+
if (!compactPluralRules) {
|
|
1697
|
+
return null;
|
|
1698
|
+
}
|
|
1699
|
+
pattern = selectPlural(pl, roundedNumber, compactPluralRules);
|
|
1700
|
+
} else {
|
|
1701
|
+
var byNumberingSystem = data.numbers.decimal;
|
|
1702
|
+
var byCompactDisplay = byNumberingSystem[numberingSystem] || byNumberingSystem[defaultNumberingSystem];
|
|
1703
|
+
var compactPlaralRule = byCompactDisplay[compactDisplay][magnitudeKey];
|
|
1704
|
+
if (!compactPlaralRule) {
|
|
1705
|
+
return null;
|
|
1706
|
+
}
|
|
1707
|
+
pattern = selectPlural(pl, roundedNumber, compactPlaralRule);
|
|
1708
|
+
}
|
|
1709
|
+
if (pattern === "0") {
|
|
1710
|
+
return null;
|
|
1711
|
+
}
|
|
1712
|
+
pattern = getPatternForSign(pattern, sign).replace(/([^\s;\-\+\d¤]+)/g, "{c:$1}").replace(/0+/, "0");
|
|
1713
|
+
return pattern;
|
|
1714
|
+
}
|
|
1715
|
+
function selectPlural(pl, x, rules) {
|
|
1716
|
+
return rules[pl.select(x)] || rules.other;
|
|
1717
|
+
}
|
|
1718
|
+
}
|
|
1719
|
+
});
|
|
1720
|
+
|
|
1721
|
+
// bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/NumberFormat/PartitionNumberPattern.js
|
|
1722
|
+
var require_PartitionNumberPattern = __commonJS({
|
|
1723
|
+
"bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/NumberFormat/PartitionNumberPattern.js": function(exports) {
|
|
1724
|
+
"use strict";
|
|
1725
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
1726
|
+
exports.PartitionNumberPattern = void 0;
|
|
1727
|
+
var tslib_1 = require_tslib();
|
|
1728
|
+
var FormatNumericToString_1 = require_FormatNumericToString();
|
|
1729
|
+
var _262_1 = require__();
|
|
1730
|
+
var ComputeExponent_1 = require_ComputeExponent();
|
|
1731
|
+
var format_to_parts_1 = (0, tslib_1.__importDefault)(require_format_to_parts());
|
|
1732
|
+
function PartitionNumberPattern(numberFormat, x, _a) {
|
|
1733
|
+
var _b;
|
|
1734
|
+
var getInternalSlots2 = _a.getInternalSlots;
|
|
1735
|
+
var internalSlots = getInternalSlots2(numberFormat);
|
|
1736
|
+
var pl = internalSlots.pl, dataLocaleData = internalSlots.dataLocaleData, numberingSystem = internalSlots.numberingSystem;
|
|
1737
|
+
var symbols = dataLocaleData.numbers.symbols[numberingSystem] || dataLocaleData.numbers.symbols[dataLocaleData.numbers.nu[0]];
|
|
1738
|
+
var magnitude = 0;
|
|
1739
|
+
var exponent = 0;
|
|
1740
|
+
var n;
|
|
1741
|
+
if (isNaN(x)) {
|
|
1742
|
+
n = symbols.nan;
|
|
1743
|
+
} else if (!isFinite(x)) {
|
|
1744
|
+
n = symbols.infinity;
|
|
1745
|
+
} else {
|
|
1746
|
+
if (internalSlots.style === "percent") {
|
|
1747
|
+
x *= 100;
|
|
1748
|
+
}
|
|
1749
|
+
;
|
|
1750
|
+
_b = (0, ComputeExponent_1.ComputeExponent)(numberFormat, x, {
|
|
1751
|
+
getInternalSlots: getInternalSlots2
|
|
1752
|
+
}), exponent = _b[0], magnitude = _b[1];
|
|
1753
|
+
x = exponent < 0 ? x * Math.pow(10, -exponent) : x / Math.pow(10, exponent);
|
|
1754
|
+
var formatNumberResult = (0, FormatNumericToString_1.FormatNumericToString)(internalSlots, x);
|
|
1755
|
+
n = formatNumberResult.formattedString;
|
|
1756
|
+
x = formatNumberResult.roundedNumber;
|
|
1757
|
+
}
|
|
1758
|
+
var sign;
|
|
1759
|
+
var signDisplay = internalSlots.signDisplay;
|
|
1760
|
+
switch (signDisplay) {
|
|
1761
|
+
case "never":
|
|
1762
|
+
sign = 0;
|
|
1763
|
+
break;
|
|
1764
|
+
case "auto":
|
|
1765
|
+
if ((0, _262_1.SameValue)(x, 0) || x > 0 || isNaN(x)) {
|
|
1766
|
+
sign = 0;
|
|
1767
|
+
} else {
|
|
1768
|
+
sign = -1;
|
|
1769
|
+
}
|
|
1770
|
+
break;
|
|
1771
|
+
case "always":
|
|
1772
|
+
if ((0, _262_1.SameValue)(x, 0) || x > 0 || isNaN(x)) {
|
|
1773
|
+
sign = 1;
|
|
1774
|
+
} else {
|
|
1775
|
+
sign = -1;
|
|
1776
|
+
}
|
|
1777
|
+
break;
|
|
1778
|
+
default:
|
|
1779
|
+
if (x === 0 || isNaN(x)) {
|
|
1780
|
+
sign = 0;
|
|
1781
|
+
} else if (x > 0) {
|
|
1782
|
+
sign = 1;
|
|
1783
|
+
} else {
|
|
1784
|
+
sign = -1;
|
|
1785
|
+
}
|
|
1786
|
+
}
|
|
1787
|
+
return (0, format_to_parts_1.default)({ roundedNumber: x, formattedString: n, exponent: exponent, magnitude: magnitude, sign: sign }, internalSlots.dataLocaleData, pl, internalSlots);
|
|
1788
|
+
}
|
|
1789
|
+
exports.PartitionNumberPattern = PartitionNumberPattern;
|
|
1790
|
+
}
|
|
1791
|
+
});
|
|
1792
|
+
|
|
1793
|
+
// bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/NumberFormat/FormatNumericToParts.js
|
|
1794
|
+
var require_FormatNumericToParts = __commonJS({
|
|
1795
|
+
"bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/NumberFormat/FormatNumericToParts.js": function(exports) {
|
|
1796
|
+
"use strict";
|
|
1797
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
1798
|
+
exports.FormatNumericToParts = void 0;
|
|
1799
|
+
var PartitionNumberPattern_1 = require_PartitionNumberPattern();
|
|
1800
|
+
var _262_1 = require__();
|
|
1801
|
+
function FormatNumericToParts(nf, x, implDetails) {
|
|
1802
|
+
var parts = (0, PartitionNumberPattern_1.PartitionNumberPattern)(nf, x, implDetails);
|
|
1803
|
+
var result = (0, _262_1.ArrayCreate)(0);
|
|
1804
|
+
for (var _i = 0, parts_1 = parts; _i < parts_1.length; _i++) {
|
|
1805
|
+
var part = parts_1[_i];
|
|
1806
|
+
result.push({
|
|
1807
|
+
type: part.type,
|
|
1808
|
+
value: part.value
|
|
1809
|
+
});
|
|
1810
|
+
}
|
|
1811
|
+
return result;
|
|
1812
|
+
}
|
|
1813
|
+
exports.FormatNumericToParts = FormatNumericToParts;
|
|
1814
|
+
}
|
|
1815
|
+
});
|
|
1816
|
+
|
|
1817
|
+
// bazel-out/darwin-fastbuild/bin/packages/intl-localematcher/abstract/CanonicalizeLocaleList.js
|
|
1818
|
+
var require_CanonicalizeLocaleList2 = __commonJS({
|
|
1819
|
+
"bazel-out/darwin-fastbuild/bin/packages/intl-localematcher/abstract/CanonicalizeLocaleList.js": function(exports) {
|
|
1820
|
+
"use strict";
|
|
1821
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
1822
|
+
exports.CanonicalizeLocaleList = void 0;
|
|
1823
|
+
function CanonicalizeLocaleList(locales) {
|
|
1824
|
+
return Intl.getCanonicalLocales(locales);
|
|
1825
|
+
}
|
|
1826
|
+
exports.CanonicalizeLocaleList = CanonicalizeLocaleList;
|
|
1827
|
+
}
|
|
1828
|
+
});
|
|
1829
|
+
|
|
1830
|
+
// bazel-out/darwin-fastbuild/bin/packages/intl-localematcher/abstract/utils.js
|
|
1831
|
+
var require_utils2 = __commonJS({
|
|
1832
|
+
"bazel-out/darwin-fastbuild/bin/packages/intl-localematcher/abstract/utils.js": function(exports) {
|
|
1833
|
+
"use strict";
|
|
1834
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
1835
|
+
exports.invariant = exports.UNICODE_EXTENSION_SEQUENCE_REGEX = void 0;
|
|
1836
|
+
exports.UNICODE_EXTENSION_SEQUENCE_REGEX = /-u(?:-[0-9a-z]{2,8})+/gi;
|
|
1837
|
+
function invariant2(condition, message, Err) {
|
|
1838
|
+
if (Err === void 0) {
|
|
1839
|
+
Err = Error;
|
|
1840
|
+
}
|
|
1841
|
+
if (!condition) {
|
|
1842
|
+
throw new Err(message);
|
|
1843
|
+
}
|
|
1844
|
+
}
|
|
1845
|
+
exports.invariant = invariant2;
|
|
1846
|
+
}
|
|
1847
|
+
});
|
|
1848
|
+
|
|
1849
|
+
// bazel-out/darwin-fastbuild/bin/packages/intl-localematcher/abstract/BestAvailableLocale.js
|
|
1850
|
+
var require_BestAvailableLocale = __commonJS({
|
|
1851
|
+
"bazel-out/darwin-fastbuild/bin/packages/intl-localematcher/abstract/BestAvailableLocale.js": function(exports) {
|
|
1852
|
+
"use strict";
|
|
1853
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
1854
|
+
exports.BestAvailableLocale = void 0;
|
|
1855
|
+
function BestAvailableLocale(availableLocales, locale) {
|
|
1856
|
+
var candidate = locale;
|
|
1857
|
+
while (true) {
|
|
1858
|
+
if (availableLocales.has(candidate)) {
|
|
1859
|
+
return candidate;
|
|
1860
|
+
}
|
|
1861
|
+
var pos = candidate.lastIndexOf("-");
|
|
1862
|
+
if (!~pos) {
|
|
1863
|
+
return void 0;
|
|
1864
|
+
}
|
|
1865
|
+
if (pos >= 2 && candidate[pos - 2] === "-") {
|
|
1866
|
+
pos -= 2;
|
|
1867
|
+
}
|
|
1868
|
+
candidate = candidate.slice(0, pos);
|
|
1869
|
+
}
|
|
1870
|
+
}
|
|
1871
|
+
exports.BestAvailableLocale = BestAvailableLocale;
|
|
1872
|
+
}
|
|
1873
|
+
});
|
|
1874
|
+
|
|
1875
|
+
// bazel-out/darwin-fastbuild/bin/packages/intl-localematcher/abstract/LookupMatcher.js
|
|
1876
|
+
var require_LookupMatcher = __commonJS({
|
|
1877
|
+
"bazel-out/darwin-fastbuild/bin/packages/intl-localematcher/abstract/LookupMatcher.js": function(exports) {
|
|
1878
|
+
"use strict";
|
|
1879
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
1880
|
+
exports.LookupMatcher = void 0;
|
|
1881
|
+
var utils_1 = require_utils2();
|
|
1882
|
+
var BestAvailableLocale_1 = require_BestAvailableLocale();
|
|
1883
|
+
function LookupMatcher(availableLocales, requestedLocales, getDefaultLocale) {
|
|
1884
|
+
var result = { locale: "" };
|
|
1885
|
+
for (var _i = 0, requestedLocales_1 = requestedLocales; _i < requestedLocales_1.length; _i++) {
|
|
1886
|
+
var locale = requestedLocales_1[_i];
|
|
1887
|
+
var noExtensionLocale = locale.replace(utils_1.UNICODE_EXTENSION_SEQUENCE_REGEX, "");
|
|
1888
|
+
var availableLocale = (0, BestAvailableLocale_1.BestAvailableLocale)(availableLocales, noExtensionLocale);
|
|
1889
|
+
if (availableLocale) {
|
|
1890
|
+
result.locale = availableLocale;
|
|
1891
|
+
if (locale !== noExtensionLocale) {
|
|
1892
|
+
result.extension = locale.slice(noExtensionLocale.length + 1, locale.length);
|
|
1893
|
+
}
|
|
1894
|
+
return result;
|
|
1895
|
+
}
|
|
1896
|
+
}
|
|
1897
|
+
result.locale = getDefaultLocale();
|
|
1898
|
+
return result;
|
|
1899
|
+
}
|
|
1900
|
+
exports.LookupMatcher = LookupMatcher;
|
|
1901
|
+
}
|
|
1902
|
+
});
|
|
1903
|
+
|
|
1904
|
+
// bazel-out/darwin-fastbuild/bin/packages/intl-localematcher/abstract/BestFitMatcher.js
|
|
1905
|
+
var require_BestFitMatcher = __commonJS({
|
|
1906
|
+
"bazel-out/darwin-fastbuild/bin/packages/intl-localematcher/abstract/BestFitMatcher.js": function(exports) {
|
|
1907
|
+
"use strict";
|
|
1908
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
1909
|
+
exports.BestFitMatcher = void 0;
|
|
1910
|
+
var BestAvailableLocale_1 = require_BestAvailableLocale();
|
|
1911
|
+
var utils_1 = require_utils2();
|
|
1912
|
+
function BestFitMatcher(availableLocales, requestedLocales, getDefaultLocale) {
|
|
1913
|
+
var minimizedAvailableLocaleMap = {};
|
|
1914
|
+
var availableLocaleMap = {};
|
|
1915
|
+
var canonicalizedLocaleMap = {};
|
|
1916
|
+
var minimizedAvailableLocales = /* @__PURE__ */ new Set();
|
|
1917
|
+
availableLocales.forEach(function(locale2) {
|
|
1918
|
+
var minimizedLocale = new Intl.Locale(locale2).minimize().toString();
|
|
1919
|
+
var canonicalizedLocale = Intl.getCanonicalLocales(locale2)[0] || locale2;
|
|
1920
|
+
minimizedAvailableLocaleMap[minimizedLocale] = locale2;
|
|
1921
|
+
availableLocaleMap[locale2] = locale2;
|
|
1922
|
+
canonicalizedLocaleMap[canonicalizedLocale] = locale2;
|
|
1923
|
+
minimizedAvailableLocales.add(minimizedLocale);
|
|
1924
|
+
minimizedAvailableLocales.add(locale2);
|
|
1925
|
+
minimizedAvailableLocales.add(canonicalizedLocale);
|
|
1926
|
+
});
|
|
1927
|
+
var foundLocale;
|
|
1928
|
+
for (var _i = 0, requestedLocales_1 = requestedLocales; _i < requestedLocales_1.length; _i++) {
|
|
1929
|
+
var l = requestedLocales_1[_i];
|
|
1930
|
+
if (foundLocale) {
|
|
1931
|
+
break;
|
|
1932
|
+
}
|
|
1933
|
+
var noExtensionLocale = l.replace(utils_1.UNICODE_EXTENSION_SEQUENCE_REGEX, "");
|
|
1934
|
+
if (availableLocales.has(noExtensionLocale)) {
|
|
1935
|
+
foundLocale = noExtensionLocale;
|
|
1936
|
+
break;
|
|
1937
|
+
}
|
|
1938
|
+
if (minimizedAvailableLocales.has(noExtensionLocale)) {
|
|
1939
|
+
foundLocale = noExtensionLocale;
|
|
1940
|
+
break;
|
|
1941
|
+
}
|
|
1942
|
+
var locale = new Intl.Locale(noExtensionLocale);
|
|
1943
|
+
var maximizedRequestedLocale = locale.maximize().toString();
|
|
1944
|
+
var minimizedRequestedLocale = locale.minimize().toString();
|
|
1945
|
+
if (minimizedAvailableLocales.has(minimizedRequestedLocale)) {
|
|
1946
|
+
foundLocale = minimizedRequestedLocale;
|
|
1947
|
+
break;
|
|
388
1948
|
}
|
|
1949
|
+
foundLocale = (0, BestAvailableLocale_1.BestAvailableLocale)(minimizedAvailableLocales, maximizedRequestedLocale);
|
|
1950
|
+
}
|
|
1951
|
+
if (!foundLocale) {
|
|
1952
|
+
return { locale: getDefaultLocale() };
|
|
1953
|
+
}
|
|
1954
|
+
return {
|
|
1955
|
+
locale: availableLocaleMap[foundLocale] || canonicalizedLocaleMap[foundLocale] || minimizedAvailableLocaleMap[foundLocale] || foundLocale
|
|
389
1956
|
};
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
1957
|
+
}
|
|
1958
|
+
exports.BestFitMatcher = BestFitMatcher;
|
|
1959
|
+
}
|
|
1960
|
+
});
|
|
1961
|
+
|
|
1962
|
+
// bazel-out/darwin-fastbuild/bin/packages/intl-localematcher/abstract/UnicodeExtensionValue.js
|
|
1963
|
+
var require_UnicodeExtensionValue = __commonJS({
|
|
1964
|
+
"bazel-out/darwin-fastbuild/bin/packages/intl-localematcher/abstract/UnicodeExtensionValue.js": function(exports) {
|
|
1965
|
+
"use strict";
|
|
1966
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
1967
|
+
exports.UnicodeExtensionValue = void 0;
|
|
1968
|
+
var utils_1 = require_utils2();
|
|
1969
|
+
function UnicodeExtensionValue(extension, key) {
|
|
1970
|
+
(0, utils_1.invariant)(key.length === 2, "key must have 2 elements");
|
|
1971
|
+
var size = extension.length;
|
|
1972
|
+
var searchValue = "-".concat(key, "-");
|
|
1973
|
+
var pos = extension.indexOf(searchValue);
|
|
1974
|
+
if (pos !== -1) {
|
|
1975
|
+
var start = pos + 4;
|
|
1976
|
+
var end = start;
|
|
1977
|
+
var k = start;
|
|
1978
|
+
var done = false;
|
|
1979
|
+
while (!done) {
|
|
1980
|
+
var e = extension.indexOf("-", k);
|
|
1981
|
+
var len = void 0;
|
|
1982
|
+
if (e === -1) {
|
|
1983
|
+
len = size - k;
|
|
1984
|
+
} else {
|
|
1985
|
+
len = e - k;
|
|
1986
|
+
}
|
|
1987
|
+
if (len === 2) {
|
|
1988
|
+
done = true;
|
|
1989
|
+
} else if (e === -1) {
|
|
1990
|
+
end = size;
|
|
1991
|
+
done = true;
|
|
1992
|
+
} else {
|
|
1993
|
+
end = e;
|
|
1994
|
+
k = e + 1;
|
|
1995
|
+
}
|
|
1996
|
+
}
|
|
1997
|
+
return extension.slice(start, end);
|
|
1998
|
+
}
|
|
1999
|
+
searchValue = "-".concat(key);
|
|
2000
|
+
pos = extension.indexOf(searchValue);
|
|
2001
|
+
if (pos !== -1 && pos + 3 === size) {
|
|
2002
|
+
return "";
|
|
2003
|
+
}
|
|
2004
|
+
return void 0;
|
|
2005
|
+
}
|
|
2006
|
+
exports.UnicodeExtensionValue = UnicodeExtensionValue;
|
|
2007
|
+
}
|
|
2008
|
+
});
|
|
2009
|
+
|
|
2010
|
+
// bazel-out/darwin-fastbuild/bin/packages/intl-localematcher/abstract/ResolveLocale.js
|
|
2011
|
+
var require_ResolveLocale = __commonJS({
|
|
2012
|
+
"bazel-out/darwin-fastbuild/bin/packages/intl-localematcher/abstract/ResolveLocale.js": function(exports) {
|
|
2013
|
+
"use strict";
|
|
2014
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
2015
|
+
exports.ResolveLocale = void 0;
|
|
2016
|
+
var LookupMatcher_1 = require_LookupMatcher();
|
|
2017
|
+
var BestFitMatcher_1 = require_BestFitMatcher();
|
|
2018
|
+
var utils_1 = require_utils2();
|
|
2019
|
+
var UnicodeExtensionValue_1 = require_UnicodeExtensionValue();
|
|
2020
|
+
function ResolveLocale(availableLocales, requestedLocales, options, relevantExtensionKeys, localeData, getDefaultLocale) {
|
|
2021
|
+
var matcher = options.localeMatcher;
|
|
2022
|
+
var r;
|
|
2023
|
+
if (matcher === "lookup") {
|
|
2024
|
+
r = (0, LookupMatcher_1.LookupMatcher)(availableLocales, requestedLocales, getDefaultLocale);
|
|
2025
|
+
} else {
|
|
2026
|
+
r = (0, BestFitMatcher_1.BestFitMatcher)(availableLocales, requestedLocales, getDefaultLocale);
|
|
2027
|
+
}
|
|
2028
|
+
var foundLocale = r.locale;
|
|
2029
|
+
var result = { locale: "", dataLocale: foundLocale };
|
|
2030
|
+
var supportedExtension = "-u";
|
|
2031
|
+
for (var _i = 0, relevantExtensionKeys_1 = relevantExtensionKeys; _i < relevantExtensionKeys_1.length; _i++) {
|
|
2032
|
+
var key = relevantExtensionKeys_1[_i];
|
|
2033
|
+
(0, utils_1.invariant)(foundLocale in localeData, "Missing locale data for ".concat(foundLocale));
|
|
2034
|
+
var foundLocaleData = localeData[foundLocale];
|
|
2035
|
+
(0, utils_1.invariant)(typeof foundLocaleData === "object" && foundLocaleData !== null, "locale data ".concat(key, " must be an object"));
|
|
2036
|
+
var keyLocaleData = foundLocaleData[key];
|
|
2037
|
+
(0, utils_1.invariant)(Array.isArray(keyLocaleData), "keyLocaleData for ".concat(key, " must be an array"));
|
|
2038
|
+
var value = keyLocaleData[0];
|
|
2039
|
+
(0, utils_1.invariant)(typeof value === "string" || value === null, "value must be string or null but got ".concat(typeof value, " in key ").concat(key));
|
|
2040
|
+
var supportedExtensionAddition = "";
|
|
2041
|
+
if (r.extension) {
|
|
2042
|
+
var requestedValue = (0, UnicodeExtensionValue_1.UnicodeExtensionValue)(r.extension, key);
|
|
2043
|
+
if (requestedValue !== void 0) {
|
|
2044
|
+
if (requestedValue !== "") {
|
|
2045
|
+
if (~keyLocaleData.indexOf(requestedValue)) {
|
|
2046
|
+
value = requestedValue;
|
|
2047
|
+
supportedExtensionAddition = "-".concat(key, "-").concat(value);
|
|
2048
|
+
}
|
|
2049
|
+
} else if (~requestedValue.indexOf("true")) {
|
|
2050
|
+
value = "true";
|
|
2051
|
+
supportedExtensionAddition = "-".concat(key);
|
|
2052
|
+
}
|
|
2053
|
+
}
|
|
2054
|
+
}
|
|
2055
|
+
if (key in options) {
|
|
2056
|
+
var optionsValue = options[key];
|
|
2057
|
+
(0, utils_1.invariant)(typeof optionsValue === "string" || typeof optionsValue === "undefined" || optionsValue === null, "optionsValue must be String, Undefined or Null");
|
|
2058
|
+
if (~keyLocaleData.indexOf(optionsValue)) {
|
|
2059
|
+
if (optionsValue !== value) {
|
|
2060
|
+
value = optionsValue;
|
|
2061
|
+
supportedExtensionAddition = "";
|
|
2062
|
+
}
|
|
2063
|
+
}
|
|
2064
|
+
}
|
|
2065
|
+
result[key] = value;
|
|
2066
|
+
supportedExtension += supportedExtensionAddition;
|
|
2067
|
+
}
|
|
2068
|
+
if (supportedExtension.length > 2) {
|
|
2069
|
+
var privateIndex = foundLocale.indexOf("-x-");
|
|
2070
|
+
if (privateIndex === -1) {
|
|
2071
|
+
foundLocale = foundLocale + supportedExtension;
|
|
393
2072
|
} else {
|
|
394
|
-
|
|
2073
|
+
var preExtension = foundLocale.slice(0, privateIndex);
|
|
2074
|
+
var postExtension = foundLocale.slice(privateIndex, foundLocale.length);
|
|
2075
|
+
foundLocale = preExtension + supportedExtension + postExtension;
|
|
395
2076
|
}
|
|
396
|
-
|
|
397
|
-
}
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
2077
|
+
foundLocale = Intl.getCanonicalLocales(foundLocale)[0];
|
|
2078
|
+
}
|
|
2079
|
+
result.locale = foundLocale;
|
|
2080
|
+
return result;
|
|
2081
|
+
}
|
|
2082
|
+
exports.ResolveLocale = ResolveLocale;
|
|
2083
|
+
}
|
|
2084
|
+
});
|
|
2085
|
+
|
|
2086
|
+
// bazel-out/darwin-fastbuild/bin/packages/intl-localematcher/abstract/LookupSupportedLocales.js
|
|
2087
|
+
var require_LookupSupportedLocales = __commonJS({
|
|
2088
|
+
"bazel-out/darwin-fastbuild/bin/packages/intl-localematcher/abstract/LookupSupportedLocales.js": function(exports) {
|
|
2089
|
+
"use strict";
|
|
2090
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
2091
|
+
exports.LookupSupportedLocales = void 0;
|
|
2092
|
+
var utils_1 = require_utils2();
|
|
2093
|
+
var BestAvailableLocale_1 = require_BestAvailableLocale();
|
|
2094
|
+
function LookupSupportedLocales(availableLocales, requestedLocales) {
|
|
2095
|
+
var subset = [];
|
|
2096
|
+
for (var _i = 0, requestedLocales_1 = requestedLocales; _i < requestedLocales_1.length; _i++) {
|
|
2097
|
+
var locale = requestedLocales_1[_i];
|
|
2098
|
+
var noExtensionLocale = locale.replace(utils_1.UNICODE_EXTENSION_SEQUENCE_REGEX, "");
|
|
2099
|
+
var availableLocale = (0, BestAvailableLocale_1.BestAvailableLocale)(availableLocales, noExtensionLocale);
|
|
2100
|
+
if (availableLocale) {
|
|
2101
|
+
subset.push(availableLocale);
|
|
411
2102
|
}
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
2103
|
+
}
|
|
2104
|
+
return subset;
|
|
2105
|
+
}
|
|
2106
|
+
exports.LookupSupportedLocales = LookupSupportedLocales;
|
|
2107
|
+
}
|
|
2108
|
+
});
|
|
2109
|
+
|
|
2110
|
+
// bazel-out/darwin-fastbuild/bin/packages/intl-localematcher/index.js
|
|
2111
|
+
var require_intl_localematcher = __commonJS({
|
|
2112
|
+
"bazel-out/darwin-fastbuild/bin/packages/intl-localematcher/index.js": function(exports) {
|
|
2113
|
+
"use strict";
|
|
2114
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
2115
|
+
exports.ResolveLocale = exports.LookupSupportedLocales = exports.match = void 0;
|
|
2116
|
+
var CanonicalizeLocaleList_1 = require_CanonicalizeLocaleList2();
|
|
2117
|
+
var ResolveLocale_1 = require_ResolveLocale();
|
|
2118
|
+
function match(requestedLocales, availableLocales, defaultLocale, opts) {
|
|
2119
|
+
var locales = availableLocales.reduce(function(all, l) {
|
|
2120
|
+
all.add(l);
|
|
2121
|
+
return all;
|
|
2122
|
+
}, /* @__PURE__ */ new Set());
|
|
2123
|
+
return (0, ResolveLocale_1.ResolveLocale)(locales, (0, CanonicalizeLocaleList_1.CanonicalizeLocaleList)(requestedLocales), {
|
|
2124
|
+
localeMatcher: (opts === null || opts === void 0 ? void 0 : opts.algorithm) || "best fit"
|
|
2125
|
+
}, [], {}, function() {
|
|
2126
|
+
return defaultLocale;
|
|
2127
|
+
}).locale;
|
|
2128
|
+
}
|
|
2129
|
+
exports.match = match;
|
|
2130
|
+
var LookupSupportedLocales_1 = require_LookupSupportedLocales();
|
|
2131
|
+
Object.defineProperty(exports, "LookupSupportedLocales", { enumerable: true, get: function() {
|
|
2132
|
+
return LookupSupportedLocales_1.LookupSupportedLocales;
|
|
2133
|
+
} });
|
|
2134
|
+
var ResolveLocale_2 = require_ResolveLocale();
|
|
2135
|
+
Object.defineProperty(exports, "ResolveLocale", { enumerable: true, get: function() {
|
|
2136
|
+
return ResolveLocale_2.ResolveLocale;
|
|
2137
|
+
} });
|
|
2138
|
+
}
|
|
2139
|
+
});
|
|
2140
|
+
|
|
2141
|
+
// bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/NumberFormat/SetNumberFormatUnitOptions.js
|
|
2142
|
+
var require_SetNumberFormatUnitOptions = __commonJS({
|
|
2143
|
+
"bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/NumberFormat/SetNumberFormatUnitOptions.js": function(exports) {
|
|
2144
|
+
"use strict";
|
|
2145
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
2146
|
+
exports.SetNumberFormatUnitOptions = void 0;
|
|
2147
|
+
var GetOption_1 = require_GetOption();
|
|
2148
|
+
var IsWellFormedCurrencyCode_1 = require_IsWellFormedCurrencyCode();
|
|
2149
|
+
var IsWellFormedUnitIdentifier_1 = require_IsWellFormedUnitIdentifier();
|
|
2150
|
+
function SetNumberFormatUnitOptions(nf, options, _a) {
|
|
2151
|
+
if (options === void 0) {
|
|
2152
|
+
options = /* @__PURE__ */ Object.create(null);
|
|
2153
|
+
}
|
|
2154
|
+
var getInternalSlots2 = _a.getInternalSlots;
|
|
2155
|
+
var internalSlots = getInternalSlots2(nf);
|
|
2156
|
+
var style = (0, GetOption_1.GetOption)(options, "style", "string", ["decimal", "percent", "currency", "unit"], "decimal");
|
|
2157
|
+
internalSlots.style = style;
|
|
2158
|
+
var currency = (0, GetOption_1.GetOption)(options, "currency", "string", void 0, void 0);
|
|
2159
|
+
if (currency !== void 0 && !(0, IsWellFormedCurrencyCode_1.IsWellFormedCurrencyCode)(currency)) {
|
|
2160
|
+
throw RangeError("Malformed currency code");
|
|
2161
|
+
}
|
|
2162
|
+
if (style === "currency" && currency === void 0) {
|
|
2163
|
+
throw TypeError("currency cannot be undefined");
|
|
2164
|
+
}
|
|
2165
|
+
var currencyDisplay = (0, GetOption_1.GetOption)(options, "currencyDisplay", "string", ["code", "symbol", "narrowSymbol", "name"], "symbol");
|
|
2166
|
+
var currencySign = (0, GetOption_1.GetOption)(options, "currencySign", "string", ["standard", "accounting"], "standard");
|
|
2167
|
+
var unit = (0, GetOption_1.GetOption)(options, "unit", "string", void 0, void 0);
|
|
2168
|
+
if (unit !== void 0 && !(0, IsWellFormedUnitIdentifier_1.IsWellFormedUnitIdentifier)(unit)) {
|
|
2169
|
+
throw RangeError("Invalid unit argument for Intl.NumberFormat()");
|
|
2170
|
+
}
|
|
2171
|
+
if (style === "unit" && unit === void 0) {
|
|
2172
|
+
throw TypeError("unit cannot be undefined");
|
|
2173
|
+
}
|
|
2174
|
+
var unitDisplay = (0, GetOption_1.GetOption)(options, "unitDisplay", "string", ["short", "narrow", "long"], "short");
|
|
2175
|
+
if (style === "currency") {
|
|
2176
|
+
internalSlots.currency = currency.toUpperCase();
|
|
2177
|
+
internalSlots.currencyDisplay = currencyDisplay;
|
|
2178
|
+
internalSlots.currencySign = currencySign;
|
|
2179
|
+
}
|
|
2180
|
+
if (style === "unit") {
|
|
2181
|
+
internalSlots.unit = unit;
|
|
2182
|
+
internalSlots.unitDisplay = unitDisplay;
|
|
2183
|
+
}
|
|
2184
|
+
}
|
|
2185
|
+
exports.SetNumberFormatUnitOptions = SetNumberFormatUnitOptions;
|
|
2186
|
+
}
|
|
2187
|
+
});
|
|
2188
|
+
|
|
2189
|
+
// bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/NumberFormat/SetNumberFormatDigitOptions.js
|
|
2190
|
+
var require_SetNumberFormatDigitOptions = __commonJS({
|
|
2191
|
+
"bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/NumberFormat/SetNumberFormatDigitOptions.js": function(exports) {
|
|
2192
|
+
"use strict";
|
|
2193
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
2194
|
+
exports.SetNumberFormatDigitOptions = void 0;
|
|
2195
|
+
var GetNumberOption_1 = require_GetNumberOption();
|
|
2196
|
+
var DefaultNumberOption_1 = require_DefaultNumberOption();
|
|
2197
|
+
function SetNumberFormatDigitOptions(internalSlots, opts, mnfdDefault, mxfdDefault, notation) {
|
|
2198
|
+
var mnid = (0, GetNumberOption_1.GetNumberOption)(opts, "minimumIntegerDigits", 1, 21, 1);
|
|
2199
|
+
var mnfd = opts.minimumFractionDigits;
|
|
2200
|
+
var mxfd = opts.maximumFractionDigits;
|
|
2201
|
+
var mnsd = opts.minimumSignificantDigits;
|
|
2202
|
+
var mxsd = opts.maximumSignificantDigits;
|
|
2203
|
+
internalSlots.minimumIntegerDigits = mnid;
|
|
2204
|
+
if (mnsd !== void 0 || mxsd !== void 0) {
|
|
2205
|
+
internalSlots.roundingType = "significantDigits";
|
|
2206
|
+
mnsd = (0, DefaultNumberOption_1.DefaultNumberOption)(mnsd, 1, 21, 1);
|
|
2207
|
+
mxsd = (0, DefaultNumberOption_1.DefaultNumberOption)(mxsd, mnsd, 21, 21);
|
|
2208
|
+
internalSlots.minimumSignificantDigits = mnsd;
|
|
2209
|
+
internalSlots.maximumSignificantDigits = mxsd;
|
|
2210
|
+
} else if (mnfd !== void 0 || mxfd !== void 0) {
|
|
2211
|
+
internalSlots.roundingType = "fractionDigits";
|
|
2212
|
+
mnfd = (0, DefaultNumberOption_1.DefaultNumberOption)(mnfd, 0, 20, mnfdDefault);
|
|
2213
|
+
var mxfdActualDefault = Math.max(mnfd, mxfdDefault);
|
|
2214
|
+
mxfd = (0, DefaultNumberOption_1.DefaultNumberOption)(mxfd, mnfd, 20, mxfdActualDefault);
|
|
2215
|
+
internalSlots.minimumFractionDigits = mnfd;
|
|
2216
|
+
internalSlots.maximumFractionDigits = mxfd;
|
|
2217
|
+
} else if (notation === "compact") {
|
|
2218
|
+
internalSlots.roundingType = "compactRounding";
|
|
2219
|
+
} else {
|
|
2220
|
+
internalSlots.roundingType = "fractionDigits";
|
|
2221
|
+
internalSlots.minimumFractionDigits = mnfdDefault;
|
|
2222
|
+
internalSlots.maximumFractionDigits = mxfdDefault;
|
|
2223
|
+
}
|
|
2224
|
+
}
|
|
2225
|
+
exports.SetNumberFormatDigitOptions = SetNumberFormatDigitOptions;
|
|
2226
|
+
}
|
|
2227
|
+
});
|
|
2228
|
+
|
|
2229
|
+
// bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/NumberFormat/InitializeNumberFormat.js
|
|
2230
|
+
var require_InitializeNumberFormat = __commonJS({
|
|
2231
|
+
"bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/NumberFormat/InitializeNumberFormat.js": function(exports) {
|
|
2232
|
+
"use strict";
|
|
2233
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
2234
|
+
exports.InitializeNumberFormat = void 0;
|
|
2235
|
+
var CanonicalizeLocaleList_1 = require_CanonicalizeLocaleList();
|
|
2236
|
+
var GetOption_1 = require_GetOption();
|
|
2237
|
+
var intl_localematcher_1 = require_intl_localematcher();
|
|
2238
|
+
var SetNumberFormatUnitOptions_1 = require_SetNumberFormatUnitOptions();
|
|
2239
|
+
var CurrencyDigits_1 = require_CurrencyDigits();
|
|
2240
|
+
var SetNumberFormatDigitOptions_1 = require_SetNumberFormatDigitOptions();
|
|
2241
|
+
var utils_1 = require_utils();
|
|
2242
|
+
var CoerceOptionsToObject_1 = require_CoerceOptionsToObject();
|
|
2243
|
+
function InitializeNumberFormat(nf, locales, opts, _a) {
|
|
2244
|
+
var getInternalSlots2 = _a.getInternalSlots, localeData = _a.localeData, availableLocales = _a.availableLocales, numberingSystemNames = _a.numberingSystemNames, getDefaultLocale = _a.getDefaultLocale, currencyDigitsData = _a.currencyDigitsData;
|
|
2245
|
+
var requestedLocales = (0, CanonicalizeLocaleList_1.CanonicalizeLocaleList)(locales);
|
|
2246
|
+
var options = (0, CoerceOptionsToObject_1.CoerceOptionsToObject)(opts);
|
|
2247
|
+
var opt = /* @__PURE__ */ Object.create(null);
|
|
2248
|
+
var matcher = (0, GetOption_1.GetOption)(options, "localeMatcher", "string", ["lookup", "best fit"], "best fit");
|
|
2249
|
+
opt.localeMatcher = matcher;
|
|
2250
|
+
var numberingSystem = (0, GetOption_1.GetOption)(options, "numberingSystem", "string", void 0, void 0);
|
|
2251
|
+
if (numberingSystem !== void 0 && numberingSystemNames.indexOf(numberingSystem) < 0) {
|
|
2252
|
+
throw RangeError("Invalid numberingSystems: ".concat(numberingSystem));
|
|
2253
|
+
}
|
|
2254
|
+
opt.nu = numberingSystem;
|
|
2255
|
+
var r = (0, intl_localematcher_1.ResolveLocale)(availableLocales, requestedLocales, opt, ["nu"], localeData, getDefaultLocale);
|
|
2256
|
+
var dataLocaleData = localeData[r.dataLocale];
|
|
2257
|
+
(0, utils_1.invariant)(!!dataLocaleData, "Missing locale data for ".concat(r.dataLocale));
|
|
2258
|
+
var internalSlots = getInternalSlots2(nf);
|
|
2259
|
+
internalSlots.locale = r.locale;
|
|
2260
|
+
internalSlots.dataLocale = r.dataLocale;
|
|
2261
|
+
internalSlots.numberingSystem = r.nu;
|
|
2262
|
+
internalSlots.dataLocaleData = dataLocaleData;
|
|
2263
|
+
(0, SetNumberFormatUnitOptions_1.SetNumberFormatUnitOptions)(nf, options, { getInternalSlots: getInternalSlots2 });
|
|
2264
|
+
var style = internalSlots.style;
|
|
2265
|
+
var mnfdDefault;
|
|
2266
|
+
var mxfdDefault;
|
|
2267
|
+
if (style === "currency") {
|
|
2268
|
+
var currency = internalSlots.currency;
|
|
2269
|
+
var cDigits = (0, CurrencyDigits_1.CurrencyDigits)(currency, { currencyDigitsData: currencyDigitsData });
|
|
2270
|
+
mnfdDefault = cDigits;
|
|
2271
|
+
mxfdDefault = cDigits;
|
|
2272
|
+
} else {
|
|
2273
|
+
mnfdDefault = 0;
|
|
2274
|
+
mxfdDefault = style === "percent" ? 0 : 3;
|
|
2275
|
+
}
|
|
2276
|
+
var notation = (0, GetOption_1.GetOption)(options, "notation", "string", ["standard", "scientific", "engineering", "compact"], "standard");
|
|
2277
|
+
internalSlots.notation = notation;
|
|
2278
|
+
(0, SetNumberFormatDigitOptions_1.SetNumberFormatDigitOptions)(internalSlots, options, mnfdDefault, mxfdDefault, notation);
|
|
2279
|
+
var compactDisplay = (0, GetOption_1.GetOption)(options, "compactDisplay", "string", ["short", "long"], "short");
|
|
2280
|
+
if (notation === "compact") {
|
|
2281
|
+
internalSlots.compactDisplay = compactDisplay;
|
|
2282
|
+
}
|
|
2283
|
+
var useGrouping = (0, GetOption_1.GetOption)(options, "useGrouping", "boolean", void 0, true);
|
|
2284
|
+
internalSlots.useGrouping = useGrouping;
|
|
2285
|
+
var signDisplay = (0, GetOption_1.GetOption)(options, "signDisplay", "string", ["auto", "never", "always", "exceptZero"], "auto");
|
|
2286
|
+
internalSlots.signDisplay = signDisplay;
|
|
2287
|
+
return nf;
|
|
2288
|
+
}
|
|
2289
|
+
exports.InitializeNumberFormat = InitializeNumberFormat;
|
|
2290
|
+
}
|
|
2291
|
+
});
|
|
2292
|
+
|
|
2293
|
+
// bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/PartitionPattern.js
|
|
2294
|
+
var require_PartitionPattern = __commonJS({
|
|
2295
|
+
"bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/PartitionPattern.js": function(exports) {
|
|
2296
|
+
"use strict";
|
|
2297
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
2298
|
+
exports.PartitionPattern = void 0;
|
|
2299
|
+
var utils_1 = require_utils();
|
|
2300
|
+
function PartitionPattern(pattern) {
|
|
2301
|
+
var result = [];
|
|
2302
|
+
var beginIndex = pattern.indexOf("{");
|
|
2303
|
+
var endIndex = 0;
|
|
2304
|
+
var nextIndex = 0;
|
|
2305
|
+
var length = pattern.length;
|
|
2306
|
+
while (beginIndex < pattern.length && beginIndex > -1) {
|
|
2307
|
+
endIndex = pattern.indexOf("}", beginIndex);
|
|
2308
|
+
(0, utils_1.invariant)(endIndex > beginIndex, "Invalid pattern ".concat(pattern));
|
|
2309
|
+
if (beginIndex > nextIndex) {
|
|
2310
|
+
result.push({
|
|
2311
|
+
type: "literal",
|
|
2312
|
+
value: pattern.substring(nextIndex, beginIndex)
|
|
2313
|
+
});
|
|
2314
|
+
}
|
|
2315
|
+
result.push({
|
|
2316
|
+
type: pattern.substring(beginIndex + 1, endIndex),
|
|
2317
|
+
value: void 0
|
|
2318
|
+
});
|
|
2319
|
+
nextIndex = endIndex + 1;
|
|
2320
|
+
beginIndex = pattern.indexOf("{", nextIndex);
|
|
2321
|
+
}
|
|
2322
|
+
if (nextIndex < length) {
|
|
2323
|
+
result.push({
|
|
2324
|
+
type: "literal",
|
|
2325
|
+
value: pattern.substring(nextIndex, length)
|
|
2326
|
+
});
|
|
2327
|
+
}
|
|
2328
|
+
return result;
|
|
2329
|
+
}
|
|
2330
|
+
exports.PartitionPattern = PartitionPattern;
|
|
2331
|
+
}
|
|
2332
|
+
});
|
|
2333
|
+
|
|
2334
|
+
// bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/SupportedLocales.js
|
|
2335
|
+
var require_SupportedLocales = __commonJS({
|
|
2336
|
+
"bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/SupportedLocales.js": function(exports) {
|
|
2337
|
+
"use strict";
|
|
2338
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
2339
|
+
exports.SupportedLocales = void 0;
|
|
2340
|
+
var _262_1 = require__();
|
|
2341
|
+
var GetOption_1 = require_GetOption();
|
|
2342
|
+
var intl_localematcher_1 = require_intl_localematcher();
|
|
2343
|
+
function SupportedLocales(availableLocales, requestedLocales, options) {
|
|
2344
|
+
var matcher = "best fit";
|
|
2345
|
+
if (options !== void 0) {
|
|
2346
|
+
options = (0, _262_1.ToObject)(options);
|
|
2347
|
+
matcher = (0, GetOption_1.GetOption)(options, "localeMatcher", "string", ["lookup", "best fit"], "best fit");
|
|
2348
|
+
}
|
|
2349
|
+
if (matcher === "best fit") {
|
|
2350
|
+
return (0, intl_localematcher_1.LookupSupportedLocales)(availableLocales, requestedLocales);
|
|
2351
|
+
}
|
|
2352
|
+
return (0, intl_localematcher_1.LookupSupportedLocales)(availableLocales, requestedLocales);
|
|
2353
|
+
}
|
|
2354
|
+
exports.SupportedLocales = SupportedLocales;
|
|
2355
|
+
}
|
|
2356
|
+
});
|
|
2357
|
+
|
|
2358
|
+
// bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/data.js
|
|
2359
|
+
var require_data = __commonJS({
|
|
2360
|
+
"bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/data.js": function(exports) {
|
|
2361
|
+
"use strict";
|
|
2362
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
2363
|
+
exports.isMissingLocaleDataError = void 0;
|
|
2364
|
+
var tslib_1 = require_tslib();
|
|
2365
|
+
var MissingLocaleDataError = function(_super) {
|
|
2366
|
+
(0, tslib_1.__extends)(MissingLocaleDataError2, _super);
|
|
2367
|
+
function MissingLocaleDataError2() {
|
|
2368
|
+
var _this = _super !== null && _super.apply(this, arguments) || this;
|
|
2369
|
+
_this.type = "MISSING_LOCALE_DATA";
|
|
2370
|
+
return _this;
|
|
2371
|
+
}
|
|
2372
|
+
return MissingLocaleDataError2;
|
|
2373
|
+
}(Error);
|
|
2374
|
+
function isMissingLocaleDataError(e) {
|
|
2375
|
+
return e.type === "MISSING_LOCALE_DATA";
|
|
2376
|
+
}
|
|
2377
|
+
exports.isMissingLocaleDataError = isMissingLocaleDataError;
|
|
2378
|
+
}
|
|
2379
|
+
});
|
|
2380
|
+
|
|
2381
|
+
// bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/types/relative-time.js
|
|
2382
|
+
var require_relative_time = __commonJS({
|
|
2383
|
+
"bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/types/relative-time.js": function(exports) {
|
|
2384
|
+
"use strict";
|
|
2385
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
2386
|
+
}
|
|
2387
|
+
});
|
|
2388
|
+
|
|
2389
|
+
// bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/types/date-time.js
|
|
2390
|
+
var require_date_time = __commonJS({
|
|
2391
|
+
"bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/types/date-time.js": function(exports) {
|
|
2392
|
+
"use strict";
|
|
2393
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
2394
|
+
exports.RangePatternType = void 0;
|
|
2395
|
+
var RangePatternType;
|
|
2396
|
+
(function(RangePatternType2) {
|
|
2397
|
+
RangePatternType2["startRange"] = "startRange";
|
|
2398
|
+
RangePatternType2["shared"] = "shared";
|
|
2399
|
+
RangePatternType2["endRange"] = "endRange";
|
|
2400
|
+
})(RangePatternType = exports.RangePatternType || (exports.RangePatternType = {}));
|
|
2401
|
+
}
|
|
2402
|
+
});
|
|
2403
|
+
|
|
2404
|
+
// bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/types/list.js
|
|
2405
|
+
var require_list = __commonJS({
|
|
2406
|
+
"bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/types/list.js": function(exports) {
|
|
2407
|
+
"use strict";
|
|
2408
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
2409
|
+
}
|
|
2410
|
+
});
|
|
2411
|
+
|
|
2412
|
+
// bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/types/plural-rules.js
|
|
2413
|
+
var require_plural_rules = __commonJS({
|
|
2414
|
+
"bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/types/plural-rules.js": function(exports) {
|
|
2415
|
+
"use strict";
|
|
2416
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
2417
|
+
}
|
|
2418
|
+
});
|
|
2419
|
+
|
|
2420
|
+
// bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/types/number.js
|
|
2421
|
+
var require_number = __commonJS({
|
|
2422
|
+
"bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/types/number.js": function(exports) {
|
|
2423
|
+
"use strict";
|
|
2424
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
2425
|
+
}
|
|
2426
|
+
});
|
|
2427
|
+
|
|
2428
|
+
// bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/types/displaynames.js
|
|
2429
|
+
var require_displaynames = __commonJS({
|
|
2430
|
+
"bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/types/displaynames.js": function(exports) {
|
|
2431
|
+
"use strict";
|
|
2432
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
2433
|
+
}
|
|
2434
|
+
});
|
|
2435
|
+
|
|
2436
|
+
// bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/index.js
|
|
2437
|
+
var require_ecma402_abstract = __commonJS({
|
|
2438
|
+
"bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/index.js": function(exports) {
|
|
2439
|
+
"use strict";
|
|
2440
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
2441
|
+
exports.invariant = exports.isMissingLocaleDataError = exports.defineProperty = exports.getMagnitude = exports.setMultiInternalSlots = exports.setInternalSlot = exports.isLiteralPart = exports.getMultiInternalSlots = exports.getInternalSlot = exports._formatToParts = void 0;
|
|
2442
|
+
var tslib_1 = require_tslib();
|
|
2443
|
+
(0, tslib_1.__exportStar)(require_CanonicalizeLocaleList(), exports);
|
|
2444
|
+
(0, tslib_1.__exportStar)(require_CanonicalizeTimeZoneName(), exports);
|
|
2445
|
+
(0, tslib_1.__exportStar)(require_CoerceOptionsToObject(), exports);
|
|
2446
|
+
(0, tslib_1.__exportStar)(require_GetNumberOption(), exports);
|
|
2447
|
+
(0, tslib_1.__exportStar)(require_GetOption(), exports);
|
|
2448
|
+
(0, tslib_1.__exportStar)(require_GetOptionsObject(), exports);
|
|
2449
|
+
(0, tslib_1.__exportStar)(require_IsSanctionedSimpleUnitIdentifier(), exports);
|
|
2450
|
+
(0, tslib_1.__exportStar)(require_IsValidTimeZoneName(), exports);
|
|
2451
|
+
(0, tslib_1.__exportStar)(require_IsWellFormedCurrencyCode(), exports);
|
|
2452
|
+
(0, tslib_1.__exportStar)(require_IsWellFormedUnitIdentifier(), exports);
|
|
2453
|
+
(0, tslib_1.__exportStar)(require_ComputeExponent(), exports);
|
|
2454
|
+
(0, tslib_1.__exportStar)(require_ComputeExponentForMagnitude(), exports);
|
|
2455
|
+
(0, tslib_1.__exportStar)(require_CurrencyDigits(), exports);
|
|
2456
|
+
(0, tslib_1.__exportStar)(require_FormatNumericToParts(), exports);
|
|
2457
|
+
(0, tslib_1.__exportStar)(require_FormatNumericToString(), exports);
|
|
2458
|
+
(0, tslib_1.__exportStar)(require_InitializeNumberFormat(), exports);
|
|
2459
|
+
(0, tslib_1.__exportStar)(require_PartitionNumberPattern(), exports);
|
|
2460
|
+
(0, tslib_1.__exportStar)(require_SetNumberFormatDigitOptions(), exports);
|
|
2461
|
+
(0, tslib_1.__exportStar)(require_SetNumberFormatUnitOptions(), exports);
|
|
2462
|
+
(0, tslib_1.__exportStar)(require_ToRawFixed(), exports);
|
|
2463
|
+
(0, tslib_1.__exportStar)(require_ToRawPrecision(), exports);
|
|
2464
|
+
var format_to_parts_1 = require_format_to_parts();
|
|
2465
|
+
Object.defineProperty(exports, "_formatToParts", { enumerable: true, get: function() {
|
|
2466
|
+
return (0, tslib_1.__importDefault)(format_to_parts_1).default;
|
|
2467
|
+
} });
|
|
2468
|
+
(0, tslib_1.__exportStar)(require_PartitionPattern(), exports);
|
|
2469
|
+
(0, tslib_1.__exportStar)(require_SupportedLocales(), exports);
|
|
2470
|
+
var utils_1 = require_utils();
|
|
2471
|
+
Object.defineProperty(exports, "getInternalSlot", { enumerable: true, get: function() {
|
|
2472
|
+
return utils_1.getInternalSlot;
|
|
2473
|
+
} });
|
|
2474
|
+
Object.defineProperty(exports, "getMultiInternalSlots", { enumerable: true, get: function() {
|
|
2475
|
+
return utils_1.getMultiInternalSlots;
|
|
2476
|
+
} });
|
|
2477
|
+
Object.defineProperty(exports, "isLiteralPart", { enumerable: true, get: function() {
|
|
2478
|
+
return utils_1.isLiteralPart;
|
|
2479
|
+
} });
|
|
2480
|
+
Object.defineProperty(exports, "setInternalSlot", { enumerable: true, get: function() {
|
|
2481
|
+
return utils_1.setInternalSlot;
|
|
2482
|
+
} });
|
|
2483
|
+
Object.defineProperty(exports, "setMultiInternalSlots", { enumerable: true, get: function() {
|
|
2484
|
+
return utils_1.setMultiInternalSlots;
|
|
2485
|
+
} });
|
|
2486
|
+
Object.defineProperty(exports, "getMagnitude", { enumerable: true, get: function() {
|
|
2487
|
+
return utils_1.getMagnitude;
|
|
2488
|
+
} });
|
|
2489
|
+
Object.defineProperty(exports, "defineProperty", { enumerable: true, get: function() {
|
|
2490
|
+
return utils_1.defineProperty;
|
|
2491
|
+
} });
|
|
2492
|
+
var data_1 = require_data();
|
|
2493
|
+
Object.defineProperty(exports, "isMissingLocaleDataError", { enumerable: true, get: function() {
|
|
2494
|
+
return data_1.isMissingLocaleDataError;
|
|
2495
|
+
} });
|
|
2496
|
+
(0, tslib_1.__exportStar)(require_relative_time(), exports);
|
|
2497
|
+
(0, tslib_1.__exportStar)(require_date_time(), exports);
|
|
2498
|
+
(0, tslib_1.__exportStar)(require_list(), exports);
|
|
2499
|
+
(0, tslib_1.__exportStar)(require_plural_rules(), exports);
|
|
2500
|
+
(0, tslib_1.__exportStar)(require_number(), exports);
|
|
2501
|
+
(0, tslib_1.__exportStar)(require_displaynames(), exports);
|
|
2502
|
+
var utils_2 = require_utils();
|
|
2503
|
+
Object.defineProperty(exports, "invariant", { enumerable: true, get: function() {
|
|
2504
|
+
return utils_2.invariant;
|
|
2505
|
+
} });
|
|
2506
|
+
(0, tslib_1.__exportStar)(require__(), exports);
|
|
459
2507
|
}
|
|
460
2508
|
});
|
|
461
2509
|
|
|
@@ -4023,80 +6071,7 @@
|
|
|
4023
6071
|
|
|
4024
6072
|
// bazel-out/darwin-fastbuild/bin/packages/intl-locale/lib/index.js
|
|
4025
6073
|
var import_tslib = __toESM(require_tslib());
|
|
4026
|
-
|
|
4027
|
-
// bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/262.js
|
|
4028
|
-
function ToString(o) {
|
|
4029
|
-
if (typeof o === "symbol") {
|
|
4030
|
-
throw TypeError("Cannot convert a Symbol value to a string");
|
|
4031
|
-
}
|
|
4032
|
-
return String(o);
|
|
4033
|
-
}
|
|
4034
|
-
function ToObject(arg) {
|
|
4035
|
-
if (arg == null) {
|
|
4036
|
-
throw new TypeError("undefined/null cannot be converted to object");
|
|
4037
|
-
}
|
|
4038
|
-
return Object(arg);
|
|
4039
|
-
}
|
|
4040
|
-
function SameValue(x, y) {
|
|
4041
|
-
if (Object.is) {
|
|
4042
|
-
return Object.is(x, y);
|
|
4043
|
-
}
|
|
4044
|
-
if (x === y) {
|
|
4045
|
-
return x !== 0 || 1 / x === 1 / y;
|
|
4046
|
-
}
|
|
4047
|
-
return x !== x && y !== y;
|
|
4048
|
-
}
|
|
4049
|
-
var MINUTES_PER_HOUR = 60;
|
|
4050
|
-
var SECONDS_PER_MINUTE = 60;
|
|
4051
|
-
var MS_PER_SECOND = 1e3;
|
|
4052
|
-
var MS_PER_MINUTE = MS_PER_SECOND * SECONDS_PER_MINUTE;
|
|
4053
|
-
var MS_PER_HOUR = MS_PER_MINUTE * MINUTES_PER_HOUR;
|
|
4054
|
-
|
|
4055
|
-
// bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/CoerceOptionsToObject.js
|
|
4056
|
-
function CoerceOptionsToObject(options) {
|
|
4057
|
-
if (typeof options === "undefined") {
|
|
4058
|
-
return /* @__PURE__ */ Object.create(null);
|
|
4059
|
-
}
|
|
4060
|
-
return ToObject(options);
|
|
4061
|
-
}
|
|
4062
|
-
|
|
4063
|
-
// bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/GetOption.js
|
|
4064
|
-
function GetOption(opts, prop, type, values, fallback) {
|
|
4065
|
-
if (typeof opts !== "object") {
|
|
4066
|
-
throw new TypeError("Options must be an object");
|
|
4067
|
-
}
|
|
4068
|
-
var value = opts[prop];
|
|
4069
|
-
if (value !== void 0) {
|
|
4070
|
-
if (type !== "boolean" && type !== "string") {
|
|
4071
|
-
throw new TypeError("invalid type");
|
|
4072
|
-
}
|
|
4073
|
-
if (type === "boolean") {
|
|
4074
|
-
value = Boolean(value);
|
|
4075
|
-
}
|
|
4076
|
-
if (type === "string") {
|
|
4077
|
-
value = ToString(value);
|
|
4078
|
-
}
|
|
4079
|
-
if (values !== void 0 && !values.filter(function(val) {
|
|
4080
|
-
return val == value;
|
|
4081
|
-
}).length) {
|
|
4082
|
-
throw new RangeError("".concat(value, " is not within ").concat(values.join(", ")));
|
|
4083
|
-
}
|
|
4084
|
-
return value;
|
|
4085
|
-
}
|
|
4086
|
-
return fallback;
|
|
4087
|
-
}
|
|
4088
|
-
|
|
4089
|
-
// bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/utils.js
|
|
4090
|
-
function invariant(condition, message, Err) {
|
|
4091
|
-
if (Err === void 0) {
|
|
4092
|
-
Err = Error;
|
|
4093
|
-
}
|
|
4094
|
-
if (!condition) {
|
|
4095
|
-
throw new Err(message);
|
|
4096
|
-
}
|
|
4097
|
-
}
|
|
4098
|
-
|
|
4099
|
-
// bazel-out/darwin-fastbuild/bin/packages/intl-locale/lib/index.js
|
|
6074
|
+
var import_ecma402_abstract = __toESM(require_ecma402_abstract());
|
|
4100
6075
|
var import_intl_getcanonicallocales = __toESM(require_intl_getcanonicallocales());
|
|
4101
6076
|
|
|
4102
6077
|
// bazel-out/darwin-fastbuild/bin/packages/intl-locale/lib/get_internal_slots.js
|
|
@@ -4114,19 +6089,19 @@
|
|
|
4114
6089
|
var RELEVANT_EXTENSION_KEYS = ["ca", "co", "hc", "kf", "kn", "nu"];
|
|
4115
6090
|
var UNICODE_TYPE_REGEX = /^[a-z0-9]{3,8}(-[a-z0-9]{3,8})*$/i;
|
|
4116
6091
|
function applyOptionsToTag(tag, options) {
|
|
4117
|
-
invariant(typeof tag === "string", "language tag must be a string");
|
|
4118
|
-
invariant((0, import_intl_getcanonicallocales.isStructurallyValidLanguageTag)(tag), "malformed language tag", RangeError);
|
|
4119
|
-
var language = GetOption(options, "language", "string", void 0, void 0);
|
|
6092
|
+
(0, import_ecma402_abstract.invariant)(typeof tag === "string", "language tag must be a string");
|
|
6093
|
+
(0, import_ecma402_abstract.invariant)((0, import_intl_getcanonicallocales.isStructurallyValidLanguageTag)(tag), "malformed language tag", RangeError);
|
|
6094
|
+
var language = (0, import_ecma402_abstract.GetOption)(options, "language", "string", void 0, void 0);
|
|
4120
6095
|
if (language !== void 0) {
|
|
4121
|
-
invariant((0, import_intl_getcanonicallocales.isUnicodeLanguageSubtag)(language), "Malformed unicode_language_subtag", RangeError);
|
|
6096
|
+
(0, import_ecma402_abstract.invariant)((0, import_intl_getcanonicallocales.isUnicodeLanguageSubtag)(language), "Malformed unicode_language_subtag", RangeError);
|
|
4122
6097
|
}
|
|
4123
|
-
var script = GetOption(options, "script", "string", void 0, void 0);
|
|
6098
|
+
var script = (0, import_ecma402_abstract.GetOption)(options, "script", "string", void 0, void 0);
|
|
4124
6099
|
if (script !== void 0) {
|
|
4125
|
-
invariant((0, import_intl_getcanonicallocales.isUnicodeScriptSubtag)(script), "Malformed unicode_script_subtag", RangeError);
|
|
6100
|
+
(0, import_ecma402_abstract.invariant)((0, import_intl_getcanonicallocales.isUnicodeScriptSubtag)(script), "Malformed unicode_script_subtag", RangeError);
|
|
4126
6101
|
}
|
|
4127
|
-
var region = GetOption(options, "region", "string", void 0, void 0);
|
|
6102
|
+
var region = (0, import_ecma402_abstract.GetOption)(options, "region", "string", void 0, void 0);
|
|
4128
6103
|
if (region !== void 0) {
|
|
4129
|
-
invariant((0, import_intl_getcanonicallocales.isUnicodeRegionSubtag)(region), "Malformed unicode_region_subtag", RangeError);
|
|
6104
|
+
(0, import_ecma402_abstract.invariant)((0, import_intl_getcanonicallocales.isUnicodeRegionSubtag)(region), "Malformed unicode_region_subtag", RangeError);
|
|
4130
6105
|
}
|
|
4131
6106
|
var languageId = (0, import_intl_getcanonicallocales.parseUnicodeLanguageId)(tag);
|
|
4132
6107
|
if (language !== void 0) {
|
|
@@ -4163,10 +6138,10 @@
|
|
|
4163
6138
|
value = entry[1];
|
|
4164
6139
|
}
|
|
4165
6140
|
}
|
|
4166
|
-
invariant(key in options, "".concat(key, " must be in options"));
|
|
6141
|
+
(0, import_ecma402_abstract.invariant)(key in options, "".concat(key, " must be in options"));
|
|
4167
6142
|
var optionsValue = options[key];
|
|
4168
6143
|
if (optionsValue !== void 0) {
|
|
4169
|
-
invariant(typeof optionsValue === "string", "Value for ".concat(key, " must be a string"));
|
|
6144
|
+
(0, import_ecma402_abstract.invariant)(typeof optionsValue === "string", "Value for ".concat(key, " must be a string"));
|
|
4170
6145
|
value = optionsValue;
|
|
4171
6146
|
if (entry) {
|
|
4172
6147
|
entry[1] = value;
|
|
@@ -4305,34 +6280,34 @@
|
|
|
4305
6280
|
tag = tag.toString();
|
|
4306
6281
|
}
|
|
4307
6282
|
internalSlots = getInternalSlots(this);
|
|
4308
|
-
var options = CoerceOptionsToObject(opts);
|
|
6283
|
+
var options = (0, import_ecma402_abstract.CoerceOptionsToObject)(opts);
|
|
4309
6284
|
tag = applyOptionsToTag(tag, options);
|
|
4310
6285
|
var opt = /* @__PURE__ */ Object.create(null);
|
|
4311
|
-
var calendar = GetOption(options, "calendar", "string", void 0, void 0);
|
|
6286
|
+
var calendar = (0, import_ecma402_abstract.GetOption)(options, "calendar", "string", void 0, void 0);
|
|
4312
6287
|
if (calendar !== void 0) {
|
|
4313
6288
|
if (!UNICODE_TYPE_REGEX.test(calendar)) {
|
|
4314
6289
|
throw new RangeError("invalid calendar");
|
|
4315
6290
|
}
|
|
4316
6291
|
}
|
|
4317
6292
|
opt.ca = calendar;
|
|
4318
|
-
var collation = GetOption(options, "collation", "string", void 0, void 0);
|
|
6293
|
+
var collation = (0, import_ecma402_abstract.GetOption)(options, "collation", "string", void 0, void 0);
|
|
4319
6294
|
if (collation !== void 0) {
|
|
4320
6295
|
if (!UNICODE_TYPE_REGEX.test(collation)) {
|
|
4321
6296
|
throw new RangeError("invalid collation");
|
|
4322
6297
|
}
|
|
4323
6298
|
}
|
|
4324
6299
|
opt.co = collation;
|
|
4325
|
-
var hc = GetOption(options, "hourCycle", "string", ["h11", "h12", "h23", "h24"], void 0);
|
|
6300
|
+
var hc = (0, import_ecma402_abstract.GetOption)(options, "hourCycle", "string", ["h11", "h12", "h23", "h24"], void 0);
|
|
4326
6301
|
opt.hc = hc;
|
|
4327
|
-
var kf = GetOption(options, "caseFirst", "string", ["upper", "lower", "false"], void 0);
|
|
6302
|
+
var kf = (0, import_ecma402_abstract.GetOption)(options, "caseFirst", "string", ["upper", "lower", "false"], void 0);
|
|
4328
6303
|
opt.kf = kf;
|
|
4329
|
-
var _kn = GetOption(options, "numeric", "boolean", void 0, void 0);
|
|
6304
|
+
var _kn = (0, import_ecma402_abstract.GetOption)(options, "numeric", "boolean", void 0, void 0);
|
|
4330
6305
|
var kn;
|
|
4331
6306
|
if (_kn !== void 0) {
|
|
4332
6307
|
kn = String(_kn);
|
|
4333
6308
|
}
|
|
4334
6309
|
opt.kn = kn;
|
|
4335
|
-
var numberingSystem = GetOption(options, "numberingSystem", "string", void 0, void 0);
|
|
6310
|
+
var numberingSystem = (0, import_ecma402_abstract.GetOption)(options, "numberingSystem", "string", void 0, void 0);
|
|
4336
6311
|
if (numberingSystem !== void 0) {
|
|
4337
6312
|
if (!UNICODE_TYPE_REGEX.test(numberingSystem)) {
|
|
4338
6313
|
throw new RangeError("Invalid numberingSystem");
|
|
@@ -4348,7 +6323,7 @@
|
|
|
4348
6323
|
internalSlots.caseFirst = r.kf;
|
|
4349
6324
|
}
|
|
4350
6325
|
if (relevantExtensionKeys.indexOf("kn") > -1) {
|
|
4351
|
-
internalSlots.numeric = SameValue(r.kn, "true");
|
|
6326
|
+
internalSlots.numeric = (0, import_ecma402_abstract.SameValue)(r.kn, "true");
|
|
4352
6327
|
}
|
|
4353
6328
|
internalSlots.numberingSystem = r.nu;
|
|
4354
6329
|
}
|
|
@@ -4490,18 +6465,4 @@
|
|
|
4490
6465
|
});
|
|
4491
6466
|
}
|
|
4492
6467
|
})();
|
|
4493
|
-
/*! *****************************************************************************
|
|
4494
|
-
Copyright (c) Microsoft Corporation.
|
|
4495
|
-
|
|
4496
|
-
Permission to use, copy, modify, and/or distribute this software for any
|
|
4497
|
-
purpose with or without fee is hereby granted.
|
|
4498
|
-
|
|
4499
|
-
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
|
4500
|
-
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
|
|
4501
|
-
AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
|
4502
|
-
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
|
|
4503
|
-
LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
|
|
4504
|
-
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
4505
|
-
PERFORMANCE OF THIS SOFTWARE.
|
|
4506
|
-
***************************************************************************** */
|
|
4507
6468
|
//# sourceMappingURL=polyfill.iife.js.map
|