@formatjs/intl-datetimeformat 5.0.0 → 6.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/polyfill.iife.js CHANGED
@@ -5,52 +5,1836 @@
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
- var __commonJS = function(cb, mod2) {
8
+ var __commonJS = function(cb, mod) {
12
9
  return function __require() {
13
- return mod2 || (0, cb[__getOwnPropNames(cb)[0]])((mod2 = { exports: {} }).exports, mod2), mod2.exports;
10
+ return mod || (0, cb[__getOwnPropNames(cb)[0]])((mod = { exports: {} }).exports, mod), mod.exports;
14
11
  };
15
12
  };
16
- var __reExport = function(target, module, copyDefault, desc) {
17
- if (module && typeof module === "object" || typeof module === "function")
18
- for (var keys = __getOwnPropNames(module), i = 0, n = keys.length, key; i < n; i++) {
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(target, key) && (copyDefault || key !== "default"))
21
- __defProp(target, key, { get: function(k) {
22
- return module[k];
23
- }.bind(null, key), enumerable: !(desc = __getOwnPropDesc(module, key)) || desc.enumerable });
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 });
21
+ }
22
+ return to;
23
+ };
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);
26
+ };
27
+
28
+ // bazel-out/darwin-fastbuild/bin/external/npm/node_modules/tslib/tslib.js
29
+ var require_tslib = __commonJS({
30
+ "bazel-out/darwin-fastbuild/bin/external/npm/node_modules/tslib/tslib.js": function(exports, module) {
31
+ var __extends;
32
+ var __assign5;
33
+ var __rest2;
34
+ var __decorate;
35
+ var __param;
36
+ var __metadata;
37
+ var __awaiter;
38
+ var __generator;
39
+ var __exportStar;
40
+ var __values;
41
+ var __read;
42
+ var __spread;
43
+ var __spreadArrays;
44
+ var __spreadArray;
45
+ var __await;
46
+ var __asyncGenerator;
47
+ var __asyncDelegator;
48
+ var __asyncValues;
49
+ var __makeTemplateObject;
50
+ var __importStar;
51
+ var __importDefault;
52
+ var __classPrivateFieldGet;
53
+ var __classPrivateFieldSet;
54
+ var __classPrivateFieldIn;
55
+ var __createBinding;
56
+ (function(factory) {
57
+ var root = typeof global === "object" ? global : typeof self === "object" ? self : typeof this === "object" ? this : {};
58
+ if (typeof define === "function" && define.amd) {
59
+ define("tslib", ["exports"], function(exports2) {
60
+ factory(createExporter(root, createExporter(exports2)));
61
+ });
62
+ } else if (typeof module === "object" && typeof module.exports === "object") {
63
+ factory(createExporter(root, createExporter(module.exports)));
64
+ } else {
65
+ factory(createExporter(root));
66
+ }
67
+ function createExporter(exports2, previous) {
68
+ if (exports2 !== root) {
69
+ if (typeof Object.create === "function") {
70
+ Object.defineProperty(exports2, "__esModule", { value: true });
71
+ } else {
72
+ exports2.__esModule = true;
73
+ }
74
+ }
75
+ return function(id, v) {
76
+ return exports2[id] = previous ? previous(id, v) : v;
77
+ };
78
+ }
79
+ })(function(exporter) {
80
+ var extendStatics = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function(d, b) {
81
+ d.__proto__ = b;
82
+ } || function(d, b) {
83
+ for (var p in b)
84
+ if (Object.prototype.hasOwnProperty.call(b, p))
85
+ d[p] = b[p];
86
+ };
87
+ __extends = function(d, b) {
88
+ if (typeof b !== "function" && b !== null)
89
+ throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
90
+ extendStatics(d, b);
91
+ function __() {
92
+ this.constructor = d;
93
+ }
94
+ d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
95
+ };
96
+ __assign5 = Object.assign || function(t) {
97
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
98
+ s = arguments[i];
99
+ for (var p in s)
100
+ if (Object.prototype.hasOwnProperty.call(s, p))
101
+ t[p] = s[p];
102
+ }
103
+ return t;
104
+ };
105
+ __rest2 = function(s, e) {
106
+ var t = {};
107
+ for (var p in s)
108
+ if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
109
+ t[p] = s[p];
110
+ if (s != null && typeof Object.getOwnPropertySymbols === "function")
111
+ for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
112
+ if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
113
+ t[p[i]] = s[p[i]];
114
+ }
115
+ return t;
116
+ };
117
+ __decorate = function(decorators, target, key, desc) {
118
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
119
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
120
+ r = Reflect.decorate(decorators, target, key, desc);
121
+ else
122
+ for (var i = decorators.length - 1; i >= 0; i--)
123
+ if (d = decorators[i])
124
+ r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
125
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
126
+ };
127
+ __param = function(paramIndex, decorator) {
128
+ return function(target, key) {
129
+ decorator(target, key, paramIndex);
130
+ };
131
+ };
132
+ __metadata = function(metadataKey, metadataValue) {
133
+ if (typeof Reflect === "object" && typeof Reflect.metadata === "function")
134
+ return Reflect.metadata(metadataKey, metadataValue);
135
+ };
136
+ __awaiter = function(thisArg, _arguments, P, generator) {
137
+ function adopt(value) {
138
+ return value instanceof P ? value : new P(function(resolve) {
139
+ resolve(value);
140
+ });
141
+ }
142
+ return new (P || (P = Promise))(function(resolve, reject) {
143
+ function fulfilled(value) {
144
+ try {
145
+ step(generator.next(value));
146
+ } catch (e) {
147
+ reject(e);
148
+ }
149
+ }
150
+ function rejected(value) {
151
+ try {
152
+ step(generator["throw"](value));
153
+ } catch (e) {
154
+ reject(e);
155
+ }
156
+ }
157
+ function step(result) {
158
+ result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected);
159
+ }
160
+ step((generator = generator.apply(thisArg, _arguments || [])).next());
161
+ });
162
+ };
163
+ __generator = function(thisArg, body) {
164
+ var _ = { label: 0, sent: function() {
165
+ if (t[0] & 1)
166
+ throw t[1];
167
+ return t[1];
168
+ }, trys: [], ops: [] }, f, y, t, g;
169
+ return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() {
170
+ return this;
171
+ }), g;
172
+ function verb(n) {
173
+ return function(v) {
174
+ return step([n, v]);
175
+ };
176
+ }
177
+ function step(op) {
178
+ if (f)
179
+ throw new TypeError("Generator is already executing.");
180
+ while (_)
181
+ try {
182
+ if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done)
183
+ return t;
184
+ if (y = 0, t)
185
+ op = [op[0] & 2, t.value];
186
+ switch (op[0]) {
187
+ case 0:
188
+ case 1:
189
+ t = op;
190
+ break;
191
+ case 4:
192
+ _.label++;
193
+ return { value: op[1], done: false };
194
+ case 5:
195
+ _.label++;
196
+ y = op[1];
197
+ op = [0];
198
+ continue;
199
+ case 7:
200
+ op = _.ops.pop();
201
+ _.trys.pop();
202
+ continue;
203
+ default:
204
+ if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) {
205
+ _ = 0;
206
+ continue;
207
+ }
208
+ if (op[0] === 3 && (!t || op[1] > t[0] && op[1] < t[3])) {
209
+ _.label = op[1];
210
+ break;
211
+ }
212
+ if (op[0] === 6 && _.label < t[1]) {
213
+ _.label = t[1];
214
+ t = op;
215
+ break;
216
+ }
217
+ if (t && _.label < t[2]) {
218
+ _.label = t[2];
219
+ _.ops.push(op);
220
+ break;
221
+ }
222
+ if (t[2])
223
+ _.ops.pop();
224
+ _.trys.pop();
225
+ continue;
226
+ }
227
+ op = body.call(thisArg, _);
228
+ } catch (e) {
229
+ op = [6, e];
230
+ y = 0;
231
+ } finally {
232
+ f = t = 0;
233
+ }
234
+ if (op[0] & 5)
235
+ throw op[1];
236
+ return { value: op[0] ? op[1] : void 0, done: true };
237
+ }
238
+ };
239
+ __exportStar = function(m, o) {
240
+ for (var p in m)
241
+ if (p !== "default" && !Object.prototype.hasOwnProperty.call(o, p))
242
+ __createBinding(o, m, p);
243
+ };
244
+ __createBinding = Object.create ? function(o, m, k, k2) {
245
+ if (k2 === void 0)
246
+ k2 = k;
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
+ } : function(o, m, k, k2) {
255
+ if (k2 === void 0)
256
+ k2 = k;
257
+ o[k2] = m[k];
258
+ };
259
+ __values = function(o) {
260
+ var s = typeof Symbol === "function" && Symbol.iterator, m = s && o[s], i = 0;
261
+ if (m)
262
+ return m.call(o);
263
+ if (o && typeof o.length === "number")
264
+ return {
265
+ next: function() {
266
+ if (o && i >= o.length)
267
+ o = void 0;
268
+ return { value: o && o[i++], done: !o };
269
+ }
270
+ };
271
+ throw new TypeError(s ? "Object is not iterable." : "Symbol.iterator is not defined.");
272
+ };
273
+ __read = function(o, n) {
274
+ var m = typeof Symbol === "function" && o[Symbol.iterator];
275
+ if (!m)
276
+ return o;
277
+ var i = m.call(o), r, ar = [], e;
278
+ try {
279
+ while ((n === void 0 || n-- > 0) && !(r = i.next()).done)
280
+ ar.push(r.value);
281
+ } catch (error) {
282
+ e = { error: error };
283
+ } finally {
284
+ try {
285
+ if (r && !r.done && (m = i["return"]))
286
+ m.call(i);
287
+ } finally {
288
+ if (e)
289
+ throw e.error;
290
+ }
291
+ }
292
+ return ar;
293
+ };
294
+ __spread = function() {
295
+ for (var ar = [], i = 0; i < arguments.length; i++)
296
+ ar = ar.concat(__read(arguments[i]));
297
+ return ar;
298
+ };
299
+ __spreadArrays = function() {
300
+ for (var s = 0, i = 0, il = arguments.length; i < il; i++)
301
+ s += arguments[i].length;
302
+ for (var r = Array(s), k = 0, i = 0; i < il; i++)
303
+ for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++)
304
+ r[k] = a[j];
305
+ return r;
306
+ };
307
+ __spreadArray = function(to, from, pack) {
308
+ if (pack || arguments.length === 2)
309
+ for (var i = 0, l = from.length, ar; i < l; i++) {
310
+ if (ar || !(i in from)) {
311
+ if (!ar)
312
+ ar = Array.prototype.slice.call(from, 0, i);
313
+ ar[i] = from[i];
314
+ }
315
+ }
316
+ return to.concat(ar || Array.prototype.slice.call(from));
317
+ };
318
+ __await = function(v) {
319
+ return this instanceof __await ? (this.v = v, this) : new __await(v);
320
+ };
321
+ __asyncGenerator = function(thisArg, _arguments, generator) {
322
+ if (!Symbol.asyncIterator)
323
+ throw new TypeError("Symbol.asyncIterator is not defined.");
324
+ var g = generator.apply(thisArg, _arguments || []), i, q = [];
325
+ return i = {}, verb("next"), verb("throw"), verb("return"), i[Symbol.asyncIterator] = function() {
326
+ return this;
327
+ }, i;
328
+ function verb(n) {
329
+ if (g[n])
330
+ i[n] = function(v) {
331
+ return new Promise(function(a, b) {
332
+ q.push([n, v, a, b]) > 1 || resume(n, v);
333
+ });
334
+ };
335
+ }
336
+ function resume(n, v) {
337
+ try {
338
+ step(g[n](v));
339
+ } catch (e) {
340
+ settle(q[0][3], e);
341
+ }
342
+ }
343
+ function step(r) {
344
+ r.value instanceof __await ? Promise.resolve(r.value.v).then(fulfill, reject) : settle(q[0][2], r);
345
+ }
346
+ function fulfill(value) {
347
+ resume("next", value);
348
+ }
349
+ function reject(value) {
350
+ resume("throw", value);
351
+ }
352
+ function settle(f, v) {
353
+ if (f(v), q.shift(), q.length)
354
+ resume(q[0][0], q[0][1]);
355
+ }
356
+ };
357
+ __asyncDelegator = function(o) {
358
+ var i, p;
359
+ return i = {}, verb("next"), verb("throw", function(e) {
360
+ throw e;
361
+ }), verb("return"), i[Symbol.iterator] = function() {
362
+ return this;
363
+ }, i;
364
+ function verb(n, f) {
365
+ i[n] = o[n] ? function(v) {
366
+ return (p = !p) ? { value: __await(o[n](v)), done: n === "return" } : f ? f(v) : v;
367
+ } : f;
368
+ }
369
+ };
370
+ __asyncValues = function(o) {
371
+ if (!Symbol.asyncIterator)
372
+ throw new TypeError("Symbol.asyncIterator is not defined.");
373
+ var m = o[Symbol.asyncIterator], i;
374
+ return m ? m.call(o) : (o = typeof __values === "function" ? __values(o) : o[Symbol.iterator](), i = {}, verb("next"), verb("throw"), verb("return"), i[Symbol.asyncIterator] = function() {
375
+ return this;
376
+ }, i);
377
+ function verb(n) {
378
+ i[n] = o[n] && function(v) {
379
+ return new Promise(function(resolve, reject) {
380
+ v = o[n](v), settle(resolve, reject, v.done, v.value);
381
+ });
382
+ };
383
+ }
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", __assign5);
441
+ exporter("__rest", __rest2);
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", __spreadArray);
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 CanonicalizeLocaleList3(locales) {
475
+ return Intl.getCanonicalLocales(locales);
476
+ }
477
+ exports.CanonicalizeLocaleList = CanonicalizeLocaleList3;
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 CanonicalizeTimeZoneName3(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 = CanonicalizeTimeZoneName3;
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 ToNumber2(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 = ToNumber2;
536
+ function ToInteger(n) {
537
+ var number = ToNumber2(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 TimeClip4(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 = TimeClip4;
563
+ function ToObject2(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 = ToObject2;
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 ArrayCreate2(len) {
581
+ return new Array(len);
582
+ }
583
+ exports.ArrayCreate = ArrayCreate2;
584
+ function HasOwnProperty(o, prop) {
585
+ return Object.prototype.hasOwnProperty.call(o, prop);
586
+ }
587
+ exports.HasOwnProperty = HasOwnProperty;
588
+ function Type2(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 = Type2;
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 WeekDay2(t) {
624
+ return mod(Day(t) + 4, 7);
625
+ }
626
+ exports.WeekDay = WeekDay2;
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 YearFromTime2(t) {
636
+ return new Date(t).getUTCFullYear();
637
+ }
638
+ exports.YearFromTime = YearFromTime2;
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(YearFromTime2(t));
654
+ }
655
+ exports.DayWithinYear = DayWithinYear;
656
+ function InLeapYear(t) {
657
+ return DaysInYear(YearFromTime2(t)) === 365 ? 0 : 1;
658
+ }
659
+ exports.InLeapYear = InLeapYear;
660
+ function MonthFromTime2(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 = MonthFromTime2;
702
+ function DateFromTime2(t) {
703
+ var dwy = DayWithinYear(t);
704
+ var mft = MonthFromTime2(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 = DateFromTime2;
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 HourFromTime2(t) {
752
+ return mod(Math.floor(t / MS_PER_HOUR), HOURS_PER_DAY);
753
+ }
754
+ exports.HourFromTime = HourFromTime2;
755
+ function MinFromTime2(t) {
756
+ return mod(Math.floor(t / MS_PER_MINUTE), MINUTES_PER_HOUR);
757
+ }
758
+ exports.MinFromTime = MinFromTime2;
759
+ function SecFromTime2(t) {
760
+ return mod(Math.floor(t / MS_PER_SECOND), SECONDS_PER_MINUTE);
761
+ }
762
+ exports.SecFromTime = SecFromTime2;
763
+ function IsCallable(fn) {
764
+ return typeof fn === "function";
765
+ }
766
+ function OrdinaryHasInstance2(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 = OrdinaryHasInstance2;
784
+ function msFromTime2(t) {
785
+ return mod(t, MS_PER_SECOND);
786
+ }
787
+ exports.msFromTime = msFromTime2;
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 CoerceOptionsToObject(options) {
799
+ if (typeof options === "undefined") {
800
+ return /* @__PURE__ */ Object.create(null);
801
+ }
802
+ return (0, _262_1.ToObject)(options);
803
+ }
804
+ exports.CoerceOptionsToObject = CoerceOptionsToObject;
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 GetNumberOption2(options, property, minimum, maximum, fallback) {
836
+ var val = options[property];
837
+ return (0, DefaultNumberOption_1.DefaultNumberOption)(val, minimum, maximum, fallback);
838
+ }
839
+ exports.GetNumberOption = GetNumberOption2;
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 IsValidTimeZoneName3(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 = IsValidTimeZoneName3;
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 defineProperty3(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 = defineProperty3;
1112
+ exports.UNICODE_EXTENSION_SEQUENCE_REGEX = /-u(?:-[0-9a-z]{2,8})+/gi;
1113
+ function invariant7(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 = invariant7;
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 formatToParts2(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 = formatToParts2;
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);
24
1788
  }
25
- return target;
26
- };
27
- var __toESM = function(module, isNodeMode) {
28
- return __reExport(__markAsModule(__defProp(module != null ? __create(__getProtoOf(module)) : {}, "default", !isNodeMode && module && module.__esModule ? { get: function() {
29
- return module.default;
30
- }, enumerable: true } : { value: module, enumerable: true })), module);
31
- };
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
+ });
32
1816
 
33
1817
  // bazel-out/darwin-fastbuild/bin/packages/intl-localematcher/abstract/CanonicalizeLocaleList.js
34
- var require_CanonicalizeLocaleList = __commonJS({
1818
+ var require_CanonicalizeLocaleList2 = __commonJS({
35
1819
  "bazel-out/darwin-fastbuild/bin/packages/intl-localematcher/abstract/CanonicalizeLocaleList.js": function(exports) {
36
1820
  "use strict";
37
1821
  Object.defineProperty(exports, "__esModule", { value: true });
38
1822
  exports.CanonicalizeLocaleList = void 0;
39
- function CanonicalizeLocaleList2(locales) {
1823
+ function CanonicalizeLocaleList3(locales) {
40
1824
  return Intl.getCanonicalLocales(locales);
41
1825
  }
42
- exports.CanonicalizeLocaleList = CanonicalizeLocaleList2;
1826
+ exports.CanonicalizeLocaleList = CanonicalizeLocaleList3;
43
1827
  }
44
1828
  });
45
1829
 
46
1830
  // bazel-out/darwin-fastbuild/bin/packages/intl-localematcher/abstract/utils.js
47
- var require_utils = __commonJS({
1831
+ var require_utils2 = __commonJS({
48
1832
  "bazel-out/darwin-fastbuild/bin/packages/intl-localematcher/abstract/utils.js": function(exports) {
49
1833
  "use strict";
50
1834
  Object.defineProperty(exports, "__esModule", { value: true });
51
1835
  exports.invariant = exports.UNICODE_EXTENSION_SEQUENCE_REGEX = void 0;
52
1836
  exports.UNICODE_EXTENSION_SEQUENCE_REGEX = /-u(?:-[0-9a-z]{2,8})+/gi;
53
- function invariant2(condition, message, Err) {
1837
+ function invariant7(condition, message, Err) {
54
1838
  if (Err === void 0) {
55
1839
  Err = Error;
56
1840
  }
@@ -58,7 +1842,7 @@
58
1842
  throw new Err(message);
59
1843
  }
60
1844
  }
61
- exports.invariant = invariant2;
1845
+ exports.invariant = invariant7;
62
1846
  }
63
1847
  });
64
1848
 
@@ -94,7 +1878,7 @@
94
1878
  "use strict";
95
1879
  Object.defineProperty(exports, "__esModule", { value: true });
96
1880
  exports.LookupMatcher = void 0;
97
- var utils_1 = require_utils();
1881
+ var utils_1 = require_utils2();
98
1882
  var BestAvailableLocale_1 = require_BestAvailableLocale();
99
1883
  function LookupMatcher(availableLocales, requestedLocales, getDefaultLocale) {
100
1884
  var result = { locale: "" };
@@ -124,7 +1908,7 @@
124
1908
  Object.defineProperty(exports, "__esModule", { value: true });
125
1909
  exports.BestFitMatcher = void 0;
126
1910
  var BestAvailableLocale_1 = require_BestAvailableLocale();
127
- var utils_1 = require_utils();
1911
+ var utils_1 = require_utils2();
128
1912
  function BestFitMatcher(availableLocales, requestedLocales, getDefaultLocale) {
129
1913
  var minimizedAvailableLocaleMap = {};
130
1914
  var availableLocaleMap = {};
@@ -181,7 +1965,7 @@
181
1965
  "use strict";
182
1966
  Object.defineProperty(exports, "__esModule", { value: true });
183
1967
  exports.UnicodeExtensionValue = void 0;
184
- var utils_1 = require_utils();
1968
+ var utils_1 = require_utils2();
185
1969
  function UnicodeExtensionValue(extension, key) {
186
1970
  (0, utils_1.invariant)(key.length === 2, "key must have 2 elements");
187
1971
  var size = extension.length;
@@ -231,7 +2015,7 @@
231
2015
  exports.ResolveLocale = void 0;
232
2016
  var LookupMatcher_1 = require_LookupMatcher();
233
2017
  var BestFitMatcher_1 = require_BestFitMatcher();
234
- var utils_1 = require_utils();
2018
+ var utils_1 = require_utils2();
235
2019
  var UnicodeExtensionValue_1 = require_UnicodeExtensionValue();
236
2020
  function ResolveLocale2(availableLocales, requestedLocales, options, relevantExtensionKeys, localeData, getDefaultLocale) {
237
2021
  var matcher = options.localeMatcher;
@@ -305,9 +2089,9 @@
305
2089
  "use strict";
306
2090
  Object.defineProperty(exports, "__esModule", { value: true });
307
2091
  exports.LookupSupportedLocales = void 0;
308
- var utils_1 = require_utils();
2092
+ var utils_1 = require_utils2();
309
2093
  var BestAvailableLocale_1 = require_BestAvailableLocale();
310
- function LookupSupportedLocales2(availableLocales, requestedLocales) {
2094
+ function LookupSupportedLocales(availableLocales, requestedLocales) {
311
2095
  var subset = [];
312
2096
  for (var _i = 0, requestedLocales_1 = requestedLocales; _i < requestedLocales_1.length; _i++) {
313
2097
  var locale = requestedLocales_1[_i];
@@ -319,7 +2103,7 @@
319
2103
  }
320
2104
  return subset;
321
2105
  }
322
- exports.LookupSupportedLocales = LookupSupportedLocales2;
2106
+ exports.LookupSupportedLocales = LookupSupportedLocales;
323
2107
  }
324
2108
  });
325
2109
 
@@ -329,7 +2113,7 @@
329
2113
  "use strict";
330
2114
  Object.defineProperty(exports, "__esModule", { value: true });
331
2115
  exports.ResolveLocale = exports.LookupSupportedLocales = exports.match = void 0;
332
- var CanonicalizeLocaleList_1 = require_CanonicalizeLocaleList();
2116
+ var CanonicalizeLocaleList_1 = require_CanonicalizeLocaleList2();
333
2117
  var ResolveLocale_1 = require_ResolveLocale();
334
2118
  function match2(requestedLocales, availableLocales, defaultLocale, opts) {
335
2119
  var locales = availableLocales.reduce(function(all, l) {
@@ -354,437 +2138,378 @@
354
2138
  }
355
2139
  });
356
2140
 
357
- // node_modules/tslib/tslib.es6.js
358
- var __assign = function() {
359
- __assign = Object.assign || function __assign2(t) {
360
- for (var s, i = 1, n = arguments.length; i < n; i++) {
361
- s = arguments[i];
362
- for (var p in s)
363
- if (Object.prototype.hasOwnProperty.call(s, p))
364
- t[p] = s[p];
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
+ }
365
2184
  }
366
- return t;
367
- };
368
- return __assign.apply(this, arguments);
369
- };
370
- function __rest(s, e) {
371
- var t = {};
372
- for (var p in s)
373
- if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
374
- t[p] = s[p];
375
- if (s != null && typeof Object.getOwnPropertySymbols === "function")
376
- for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
377
- if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
378
- t[p[i]] = s[p[i]];
379
- }
380
- return t;
381
- }
382
-
383
- // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/CanonicalizeLocaleList.js
384
- function CanonicalizeLocaleList(locales) {
385
- return Intl.getCanonicalLocales(locales);
386
- }
387
-
388
- // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/CanonicalizeTimeZoneName.js
389
- function CanonicalizeTimeZoneName(tz, _a) {
390
- var tzData = _a.tzData, uppercaseLinks = _a.uppercaseLinks;
391
- var uppercasedTz = tz.toUpperCase();
392
- var uppercasedZones = Object.keys(tzData).reduce(function(all, z) {
393
- all[z.toUpperCase()] = z;
394
- return all;
395
- }, {});
396
- var ianaTimeZone = uppercaseLinks[uppercasedTz] || uppercasedZones[uppercasedTz];
397
- if (ianaTimeZone === "Etc/UTC" || ianaTimeZone === "Etc/GMT") {
398
- return "UTC";
399
- }
400
- return ianaTimeZone;
401
- }
402
-
403
- // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/262.js
404
- function ToString(o) {
405
- if (typeof o === "symbol") {
406
- throw TypeError("Cannot convert a Symbol value to a string");
407
- }
408
- return String(o);
409
- }
410
- function ToNumber(val) {
411
- if (val === void 0) {
412
- return NaN;
413
- }
414
- if (val === null) {
415
- return 0;
416
- }
417
- if (typeof val === "boolean") {
418
- return val ? 1 : 0;
419
- }
420
- if (typeof val === "number") {
421
- return val;
422
- }
423
- if (typeof val === "symbol" || typeof val === "bigint") {
424
- throw new TypeError("Cannot convert symbol/bigint to number");
425
- }
426
- return Number(val);
427
- }
428
- function ToInteger(n) {
429
- var number = ToNumber(n);
430
- if (isNaN(number) || SameValue(number, -0)) {
431
- return 0;
432
- }
433
- if (isFinite(number)) {
434
- return number;
435
- }
436
- var integer = Math.floor(Math.abs(number));
437
- if (number < 0) {
438
- integer = -integer;
439
- }
440
- if (SameValue(integer, -0)) {
441
- return 0;
442
- }
443
- return integer;
444
- }
445
- function TimeClip(time) {
446
- if (!isFinite(time)) {
447
- return NaN;
448
- }
449
- if (Math.abs(time) > 8.64 * 1e15) {
450
- return NaN;
451
- }
452
- return ToInteger(time);
453
- }
454
- function ToObject(arg) {
455
- if (arg == null) {
456
- throw new TypeError("undefined/null cannot be converted to object");
457
- }
458
- return Object(arg);
459
- }
460
- function SameValue(x, y) {
461
- if (Object.is) {
462
- return Object.is(x, y);
463
- }
464
- if (x === y) {
465
- return x !== 0 || 1 / x === 1 / y;
466
- }
467
- return x !== x && y !== y;
468
- }
469
- function ArrayCreate(len) {
470
- return new Array(len);
471
- }
472
- function Type(x) {
473
- if (x === null) {
474
- return "Null";
475
- }
476
- if (typeof x === "undefined") {
477
- return "Undefined";
478
- }
479
- if (typeof x === "function" || typeof x === "object") {
480
- return "Object";
481
- }
482
- if (typeof x === "number") {
483
- return "Number";
484
- }
485
- if (typeof x === "boolean") {
486
- return "Boolean";
487
- }
488
- if (typeof x === "string") {
489
- return "String";
490
- }
491
- if (typeof x === "symbol") {
492
- return "Symbol";
493
- }
494
- if (typeof x === "bigint") {
495
- return "BigInt";
496
- }
497
- }
498
- var MS_PER_DAY = 864e5;
499
- function mod(x, y) {
500
- return x - Math.floor(x / y) * y;
501
- }
502
- function Day(t) {
503
- return Math.floor(t / MS_PER_DAY);
504
- }
505
- function WeekDay(t) {
506
- return mod(Day(t) + 4, 7);
507
- }
508
- function DayFromYear(y) {
509
- return Date.UTC(y, 0) / MS_PER_DAY;
510
- }
511
- function YearFromTime(t) {
512
- return new Date(t).getUTCFullYear();
513
- }
514
- function DaysInYear(y) {
515
- if (y % 4 !== 0) {
516
- return 365;
517
- }
518
- if (y % 100 !== 0) {
519
- return 366;
520
- }
521
- if (y % 400 !== 0) {
522
- return 365;
523
- }
524
- return 366;
525
- }
526
- function DayWithinYear(t) {
527
- return Day(t) - DayFromYear(YearFromTime(t));
528
- }
529
- function InLeapYear(t) {
530
- return DaysInYear(YearFromTime(t)) === 365 ? 0 : 1;
531
- }
532
- function MonthFromTime(t) {
533
- var dwy = DayWithinYear(t);
534
- var leap = InLeapYear(t);
535
- if (dwy >= 0 && dwy < 31) {
536
- return 0;
537
- }
538
- if (dwy < 59 + leap) {
539
- return 1;
540
- }
541
- if (dwy < 90 + leap) {
542
- return 2;
543
- }
544
- if (dwy < 120 + leap) {
545
- return 3;
546
- }
547
- if (dwy < 151 + leap) {
548
- return 4;
549
- }
550
- if (dwy < 181 + leap) {
551
- return 5;
552
- }
553
- if (dwy < 212 + leap) {
554
- return 6;
555
- }
556
- if (dwy < 243 + leap) {
557
- return 7;
558
- }
559
- if (dwy < 273 + leap) {
560
- return 8;
561
- }
562
- if (dwy < 304 + leap) {
563
- return 9;
564
- }
565
- if (dwy < 334 + leap) {
566
- return 10;
567
- }
568
- if (dwy < 365 + leap) {
569
- return 11;
570
- }
571
- throw new Error("Invalid time");
572
- }
573
- function DateFromTime(t) {
574
- var dwy = DayWithinYear(t);
575
- var mft = MonthFromTime(t);
576
- var leap = InLeapYear(t);
577
- if (mft === 0) {
578
- return dwy + 1;
579
- }
580
- if (mft === 1) {
581
- return dwy - 30;
582
- }
583
- if (mft === 2) {
584
- return dwy - 58 - leap;
585
- }
586
- if (mft === 3) {
587
- return dwy - 89 - leap;
588
- }
589
- if (mft === 4) {
590
- return dwy - 119 - leap;
591
- }
592
- if (mft === 5) {
593
- return dwy - 150 - leap;
594
- }
595
- if (mft === 6) {
596
- return dwy - 180 - leap;
597
- }
598
- if (mft === 7) {
599
- return dwy - 211 - leap;
600
- }
601
- if (mft === 8) {
602
- return dwy - 242 - leap;
603
- }
604
- if (mft === 9) {
605
- return dwy - 272 - leap;
606
- }
607
- if (mft === 10) {
608
- return dwy - 303 - leap;
609
- }
610
- if (mft === 11) {
611
- return dwy - 333 - leap;
612
- }
613
- throw new Error("Invalid time");
614
- }
615
- var HOURS_PER_DAY = 24;
616
- var MINUTES_PER_HOUR = 60;
617
- var SECONDS_PER_MINUTE = 60;
618
- var MS_PER_SECOND = 1e3;
619
- var MS_PER_MINUTE = MS_PER_SECOND * SECONDS_PER_MINUTE;
620
- var MS_PER_HOUR = MS_PER_MINUTE * MINUTES_PER_HOUR;
621
- function HourFromTime(t) {
622
- return mod(Math.floor(t / MS_PER_HOUR), HOURS_PER_DAY);
623
- }
624
- function MinFromTime(t) {
625
- return mod(Math.floor(t / MS_PER_MINUTE), MINUTES_PER_HOUR);
626
- }
627
- function SecFromTime(t) {
628
- return mod(Math.floor(t / MS_PER_SECOND), SECONDS_PER_MINUTE);
629
- }
630
- function IsCallable(fn) {
631
- return typeof fn === "function";
632
- }
633
- function OrdinaryHasInstance(C, O, internalSlots) {
634
- if (!IsCallable(C)) {
635
- return false;
2185
+ exports.SetNumberFormatUnitOptions = SetNumberFormatUnitOptions;
636
2186
  }
637
- if (internalSlots === null || internalSlots === void 0 ? void 0 : internalSlots.boundTargetFunction) {
638
- var BC = internalSlots === null || internalSlots === void 0 ? void 0 : internalSlots.boundTargetFunction;
639
- return O instanceof BC;
640
- }
641
- if (typeof O !== "object") {
642
- return false;
643
- }
644
- var P = C.prototype;
645
- if (typeof P !== "object") {
646
- throw new TypeError("OrdinaryHasInstance called on an object with an invalid prototype property.");
647
- }
648
- return Object.prototype.isPrototypeOf.call(P, O);
649
- }
650
- function msFromTime(t) {
651
- return mod(t, MS_PER_SECOND);
652
- }
2187
+ });
653
2188
 
654
- // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/DefaultNumberOption.js
655
- function DefaultNumberOption(val, min, max, fallback) {
656
- if (val !== void 0) {
657
- val = Number(val);
658
- if (isNaN(val) || val < min || val > max) {
659
- throw new RangeError("".concat(val, " is outside of range [").concat(min, ", ").concat(max, "]"));
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
+ }
660
2224
  }
661
- return Math.floor(val);
2225
+ exports.SetNumberFormatDigitOptions = SetNumberFormatDigitOptions;
662
2226
  }
663
- return fallback;
664
- }
665
-
666
- // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/GetNumberOption.js
667
- function GetNumberOption(options, property, minimum, maximum, fallback) {
668
- var val = options[property];
669
- return DefaultNumberOption(val, minimum, maximum, fallback);
670
- }
2227
+ });
671
2228
 
672
- // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/GetOption.js
673
- function GetOption(opts, prop, type, values, fallback) {
674
- if (typeof opts !== "object") {
675
- throw new TypeError("Options must be an object");
676
- }
677
- var value = opts[prop];
678
- if (value !== void 0) {
679
- if (type !== "boolean" && type !== "string") {
680
- throw new TypeError("invalid type");
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;
681
2288
  }
682
- if (type === "boolean") {
683
- value = Boolean(value);
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 PartitionPattern3(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;
684
2329
  }
685
- if (type === "string") {
686
- value = ToString(value);
2330
+ exports.PartitionPattern = PartitionPattern3;
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 SupportedLocales2(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);
687
2353
  }
688
- if (values !== void 0 && !values.filter(function(val) {
689
- return val == value;
690
- }).length) {
691
- throw new RangeError("".concat(value, " is not within ").concat(values.join(", ")));
2354
+ exports.SupportedLocales = SupportedLocales2;
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";
692
2376
  }
693
- return value;
2377
+ exports.isMissingLocaleDataError = isMissingLocaleDataError;
694
2378
  }
695
- return fallback;
696
- }
2379
+ });
697
2380
 
698
- // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/IsValidTimeZoneName.js
699
- function IsValidTimeZoneName(tz, _a) {
700
- var tzData = _a.tzData, uppercaseLinks = _a.uppercaseLinks;
701
- var uppercasedTz = tz.toUpperCase();
702
- var zoneNames = /* @__PURE__ */ new Set();
703
- var linkNames = /* @__PURE__ */ new Set();
704
- Object.keys(tzData).map(function(z) {
705
- return z.toUpperCase();
706
- }).forEach(function(z) {
707
- return zoneNames.add(z);
708
- });
709
- Object.keys(uppercaseLinks).forEach(function(linkName) {
710
- linkNames.add(linkName.toUpperCase());
711
- zoneNames.add(uppercaseLinks[linkName].toUpperCase());
712
- });
713
- return zoneNames.has(uppercasedTz) || linkNames.has(uppercasedTz);
714
- }
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
+ });
715
2388
 
716
- // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/utils.js
717
- function defineProperty(target, name, _a) {
718
- var value = _a.value;
719
- Object.defineProperty(target, name, {
720
- configurable: true,
721
- enumerable: false,
722
- writable: true,
723
- value: value
724
- });
725
- }
726
- function invariant(condition, message, Err) {
727
- if (Err === void 0) {
728
- Err = Error;
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 RangePatternType3;
2396
+ (function(RangePatternType4) {
2397
+ RangePatternType4["startRange"] = "startRange";
2398
+ RangePatternType4["shared"] = "shared";
2399
+ RangePatternType4["endRange"] = "endRange";
2400
+ })(RangePatternType3 = exports.RangePatternType || (exports.RangePatternType = {}));
729
2401
  }
730
- if (!condition) {
731
- throw new Err(message);
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 });
732
2409
  }
733
- }
2410
+ });
734
2411
 
735
- // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/PartitionPattern.js
736
- function PartitionPattern(pattern) {
737
- var result = [];
738
- var beginIndex = pattern.indexOf("{");
739
- var endIndex = 0;
740
- var nextIndex = 0;
741
- var length = pattern.length;
742
- while (beginIndex < pattern.length && beginIndex > -1) {
743
- endIndex = pattern.indexOf("}", beginIndex);
744
- invariant(endIndex > beginIndex, "Invalid pattern ".concat(pattern));
745
- if (beginIndex > nextIndex) {
746
- result.push({
747
- type: "literal",
748
- value: pattern.substring(nextIndex, beginIndex)
749
- });
750
- }
751
- result.push({
752
- type: pattern.substring(beginIndex + 1, endIndex),
753
- value: void 0
754
- });
755
- nextIndex = endIndex + 1;
756
- beginIndex = pattern.indexOf("{", nextIndex);
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 });
757
2417
  }
758
- if (nextIndex < length) {
759
- result.push({
760
- type: "literal",
761
- value: pattern.substring(nextIndex, length)
762
- });
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 });
763
2425
  }
764
- return result;
765
- }
2426
+ });
766
2427
 
767
- // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/SupportedLocales.js
768
- var import_intl_localematcher = __toESM(require_intl_localematcher());
769
- function SupportedLocales(availableLocales, requestedLocales, options) {
770
- var matcher = "best fit";
771
- if (options !== void 0) {
772
- options = ToObject(options);
773
- matcher = GetOption(options, "localeMatcher", "string", ["lookup", "best fit"], "best fit");
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 });
774
2433
  }
775
- if (matcher === "best fit") {
776
- return (0, import_intl_localematcher.LookupSupportedLocales)(availableLocales, requestedLocales);
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);
777
2507
  }
778
- return (0, import_intl_localematcher.LookupSupportedLocales)(availableLocales, requestedLocales);
779
- }
2508
+ });
780
2509
 
781
- // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/types/date-time.js
782
- var RangePatternType;
783
- (function(RangePatternType2) {
784
- RangePatternType2["startRange"] = "startRange";
785
- RangePatternType2["shared"] = "shared";
786
- RangePatternType2["endRange"] = "endRange";
787
- })(RangePatternType || (RangePatternType = {}));
2510
+ // bazel-out/darwin-fastbuild/bin/packages/intl-datetimeformat/lib/src/core.js
2511
+ var import_tslib4 = __toESM(require_tslib());
2512
+ var import_ecma402_abstract12 = __toESM(require_ecma402_abstract());
788
2513
 
789
2514
  // bazel-out/darwin-fastbuild/bin/packages/intl-datetimeformat/lib/src/get_internal_slots.js
790
2515
  var internalSlotMap = /* @__PURE__ */ new WeakMap();
@@ -949,6 +2674,12 @@
949
2674
  return zones;
950
2675
  }
951
2676
 
2677
+ // bazel-out/darwin-fastbuild/bin/packages/intl-datetimeformat/lib/src/abstract/PartitionDateTimePattern.js
2678
+ var import_ecma402_abstract3 = __toESM(require_ecma402_abstract());
2679
+
2680
+ // bazel-out/darwin-fastbuild/bin/packages/intl-datetimeformat/lib/src/abstract/FormatDateTimePattern.js
2681
+ var import_ecma402_abstract2 = __toESM(require_ecma402_abstract());
2682
+
952
2683
  // bazel-out/darwin-fastbuild/bin/packages/intl-datetimeformat/lib/src/abstract/utils.js
953
2684
  var DATE_TIME_PROPS = [
954
2685
  "weekday",
@@ -970,6 +2701,7 @@
970
2701
  var shortMorePenalty = 3;
971
2702
 
972
2703
  // bazel-out/darwin-fastbuild/bin/packages/intl-datetimeformat/lib/src/abstract/ToLocalTime.js
2704
+ var import_ecma402_abstract = __toESM(require_ecma402_abstract());
973
2705
  function getApplicableZoneData(t, timeZone, tzData) {
974
2706
  var _a;
975
2707
  var zoneData = tzData[timeZone];
@@ -990,23 +2722,23 @@
990
2722
  }
991
2723
  function ToLocalTime(t, calendar, timeZone, _a) {
992
2724
  var tzData = _a.tzData;
993
- invariant(Type(t) === "Number", "invalid time");
994
- invariant(calendar === "gregory", "We only support Gregory calendar right now");
2725
+ (0, import_ecma402_abstract.invariant)((0, import_ecma402_abstract.Type)(t) === "Number", "invalid time");
2726
+ (0, import_ecma402_abstract.invariant)(calendar === "gregory", "We only support Gregory calendar right now");
995
2727
  var _b = getApplicableZoneData(t, timeZone, tzData), timeZoneOffset = _b[0], inDST = _b[1];
996
2728
  var tz = t + timeZoneOffset;
997
- var year = YearFromTime(tz);
2729
+ var year = (0, import_ecma402_abstract.YearFromTime)(tz);
998
2730
  return {
999
- weekday: WeekDay(tz),
2731
+ weekday: (0, import_ecma402_abstract.WeekDay)(tz),
1000
2732
  era: year < 0 ? "BC" : "AD",
1001
2733
  year: year,
1002
2734
  relatedYear: void 0,
1003
2735
  yearName: void 0,
1004
- month: MonthFromTime(tz),
1005
- day: DateFromTime(tz),
1006
- hour: HourFromTime(tz),
1007
- minute: MinFromTime(tz),
1008
- second: SecFromTime(tz),
1009
- millisecond: msFromTime(tz),
2736
+ month: (0, import_ecma402_abstract.MonthFromTime)(tz),
2737
+ day: (0, import_ecma402_abstract.DateFromTime)(tz),
2738
+ hour: (0, import_ecma402_abstract.HourFromTime)(tz),
2739
+ minute: (0, import_ecma402_abstract.MinFromTime)(tz),
2740
+ second: (0, import_ecma402_abstract.SecFromTime)(tz),
2741
+ millisecond: (0, import_ecma402_abstract.msFromTime)(tz),
1010
2742
  inDST: inDST,
1011
2743
  timeZoneOffset: timeZoneOffset
1012
2744
  };
@@ -1038,7 +2770,7 @@
1038
2770
  }
1039
2771
  function FormatDateTimePattern(dtf, patternParts, x, _a) {
1040
2772
  var getInternalSlots2 = _a.getInternalSlots, localeData = _a.localeData, getDefaultTimeZone = _a.getDefaultTimeZone, tzData = _a.tzData;
1041
- x = TimeClip(x);
2773
+ x = (0, import_ecma402_abstract2.TimeClip)(x);
1042
2774
  var internalSlots = getInternalSlots2(dtf);
1043
2775
  var dataLocale = internalSlots.dataLocale;
1044
2776
  var dataLocaleData = localeData[dataLocale];
@@ -1159,14 +2891,14 @@
1159
2891
 
1160
2892
  // bazel-out/darwin-fastbuild/bin/packages/intl-datetimeformat/lib/src/abstract/PartitionDateTimePattern.js
1161
2893
  function PartitionDateTimePattern(dtf, x, implDetails) {
1162
- x = TimeClip(x);
2894
+ x = (0, import_ecma402_abstract3.TimeClip)(x);
1163
2895
  if (isNaN(x)) {
1164
2896
  throw new RangeError("invalid time");
1165
2897
  }
1166
2898
  var getInternalSlots2 = implDetails.getInternalSlots;
1167
2899
  var internalSlots = getInternalSlots2(dtf);
1168
2900
  var pattern = internalSlots.pattern;
1169
- return FormatDateTimePattern(dtf, PartitionPattern(pattern), x, implDetails);
2901
+ return FormatDateTimePattern(dtf, (0, import_ecma402_abstract3.PartitionPattern)(pattern), x, implDetails);
1170
2902
  }
1171
2903
 
1172
2904
  // bazel-out/darwin-fastbuild/bin/packages/intl-datetimeformat/lib/src/abstract/FormatDateTime.js
@@ -1180,11 +2912,16 @@
1180
2912
  return result;
1181
2913
  }
1182
2914
 
2915
+ // bazel-out/darwin-fastbuild/bin/packages/intl-datetimeformat/lib/src/abstract/InitializeDateTimeFormat.js
2916
+ var import_ecma402_abstract9 = __toESM(require_ecma402_abstract());
2917
+
1183
2918
  // bazel-out/darwin-fastbuild/bin/packages/intl-datetimeformat/lib/src/abstract/BasicFormatMatcher.js
2919
+ var import_tslib = __toESM(require_tslib());
2920
+ var import_ecma402_abstract4 = __toESM(require_ecma402_abstract());
1184
2921
  function BasicFormatMatcher(options, formats) {
1185
2922
  var bestScore = -Infinity;
1186
2923
  var bestFormat = formats[0];
1187
- invariant(Array.isArray(formats), "formats should be a list of things");
2924
+ (0, import_ecma402_abstract4.invariant)(Array.isArray(formats), "formats should be a list of things");
1188
2925
  for (var _i = 0, formats_1 = formats; _i < formats_1.length; _i++) {
1189
2926
  var format = formats_1[_i];
1190
2927
  var score = 0;
@@ -1222,10 +2959,16 @@
1222
2959
  bestFormat = format;
1223
2960
  }
1224
2961
  }
1225
- return __assign({}, bestFormat);
2962
+ return (0, import_tslib.__assign)({}, bestFormat);
1226
2963
  }
1227
2964
 
2965
+ // bazel-out/darwin-fastbuild/bin/packages/intl-datetimeformat/lib/src/abstract/BestFitFormatMatcher.js
2966
+ var import_tslib3 = __toESM(require_tslib());
2967
+ var import_ecma402_abstract6 = __toESM(require_ecma402_abstract());
2968
+
1228
2969
  // bazel-out/darwin-fastbuild/bin/packages/intl-datetimeformat/lib/src/abstract/skeleton.js
2970
+ var import_tslib2 = __toESM(require_tslib());
2971
+ var import_ecma402_abstract5 = __toESM(require_ecma402_abstract());
1229
2972
  var DATE_TIME_REGEX = /(?:[Eec]{1,6}|G{1,5}|[Qq]{1,5}|(?:[yYur]+|U{1,5})|[ML]{1,5}|d{1,2}|D{1,3}|F{1}|[abB]{1,5}|[hkHK]{1,2}|w{1,2}|W{1}|m{1,2}|s{1,2}|[zZOvVxX]{1,4})(?=([^']*'[^']*')*[^']*$)/g;
1230
2973
  var expPatternTrimmer = /^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g;
1231
2974
  function matchSkeletonPattern(match2, result) {
@@ -1402,8 +3145,8 @@
1402
3145
  patternParts: []
1403
3146
  };
1404
3147
  var _a = processDateTimePattern(rawPattern_1, intervalResult), pattern_1 = _a[0], pattern12_1 = _a[1];
1405
- result.rangePatterns[key] = __assign(__assign({}, intervalResult), { patternParts: splitRangePattern(pattern_1) });
1406
- result.rangePatterns12[key] = __assign(__assign({}, intervalResult), { patternParts: splitRangePattern(pattern12_1) });
3148
+ result.rangePatterns[key] = (0, import_tslib2.__assign)((0, import_tslib2.__assign)({}, intervalResult), { patternParts: splitRangePattern(pattern_1) });
3149
+ result.rangePatterns12[key] = (0, import_tslib2.__assign)((0, import_tslib2.__assign)({}, intervalResult), { patternParts: splitRangePattern(pattern12_1) });
1407
3150
  }
1408
3151
  }
1409
3152
  if (intervalFormatFallback) {
@@ -1429,17 +3172,17 @@
1429
3172
  switch (pattern2) {
1430
3173
  case "{0}":
1431
3174
  return {
1432
- source: RangePatternType.startRange,
3175
+ source: import_ecma402_abstract5.RangePatternType.startRange,
1433
3176
  pattern: pattern2
1434
3177
  };
1435
3178
  case "{1}":
1436
3179
  return {
1437
- source: RangePatternType.endRange,
3180
+ source: import_ecma402_abstract5.RangePatternType.endRange,
1438
3181
  pattern: pattern2
1439
3182
  };
1440
3183
  default:
1441
3184
  return {
1442
- source: RangePatternType.shared,
3185
+ source: import_ecma402_abstract5.RangePatternType.shared,
1443
3186
  pattern: pattern2
1444
3187
  };
1445
3188
  }
@@ -1461,18 +3204,18 @@
1461
3204
  if (!splitIndex) {
1462
3205
  return [
1463
3206
  {
1464
- source: RangePatternType.startRange,
3207
+ source: import_ecma402_abstract5.RangePatternType.startRange,
1465
3208
  pattern: pattern
1466
3209
  }
1467
3210
  ];
1468
3211
  }
1469
3212
  return [
1470
3213
  {
1471
- source: RangePatternType.startRange,
3214
+ source: import_ecma402_abstract5.RangePatternType.startRange,
1472
3215
  pattern: pattern.slice(0, splitIndex)
1473
3216
  },
1474
3217
  {
1475
- source: RangePatternType.endRange,
3218
+ source: import_ecma402_abstract5.RangePatternType.endRange,
1476
3219
  pattern: pattern.slice(splitIndex)
1477
3220
  }
1478
3221
  ];
@@ -1522,7 +3265,7 @@
1522
3265
  function BestFitFormatMatcher(options, formats) {
1523
3266
  var bestScore = -Infinity;
1524
3267
  var bestFormat = formats[0];
1525
- invariant(Array.isArray(formats), "formats should be a list of things");
3268
+ (0, import_ecma402_abstract6.invariant)(Array.isArray(formats), "formats should be a list of things");
1526
3269
  for (var _i = 0, formats_1 = formats; _i < formats_1.length; _i++) {
1527
3270
  var format = formats_1[_i];
1528
3271
  var score = bestFitFormatMatcherScore(options, format);
@@ -1531,7 +3274,7 @@
1531
3274
  bestFormat = format;
1532
3275
  }
1533
3276
  }
1534
- var skeletonFormat = __assign({}, bestFormat);
3277
+ var skeletonFormat = (0, import_tslib3.__assign)({}, bestFormat);
1535
3278
  var patternFormat = { rawPattern: bestFormat.rawPattern };
1536
3279
  processDateTimePattern(bestFormat.rawPattern, patternFormat);
1537
3280
  for (var prop in skeletonFormat) {
@@ -1561,14 +3304,15 @@
1561
3304
  }
1562
3305
 
1563
3306
  // bazel-out/darwin-fastbuild/bin/packages/intl-datetimeformat/lib/src/abstract/DateTimeStyleFormat.js
3307
+ var import_ecma402_abstract7 = __toESM(require_ecma402_abstract());
1564
3308
  function DateTimeStyleFormat(dateStyle, timeStyle, dataLocaleData) {
1565
3309
  var dateFormat, timeFormat;
1566
3310
  if (timeStyle !== void 0) {
1567
- invariant(timeStyle === "full" || timeStyle === "long" || timeStyle === "medium" || timeStyle === "short", "invalid timeStyle");
3311
+ (0, import_ecma402_abstract7.invariant)(timeStyle === "full" || timeStyle === "long" || timeStyle === "medium" || timeStyle === "short", "invalid timeStyle");
1568
3312
  timeFormat = dataLocaleData.timeFormat[timeStyle];
1569
3313
  }
1570
3314
  if (dateStyle !== void 0) {
1571
- invariant(dateStyle === "full" || dateStyle === "long" || dateStyle === "medium" || dateStyle === "short", "invalid dateStyle");
3315
+ (0, import_ecma402_abstract7.invariant)(dateStyle === "full" || dateStyle === "long" || dateStyle === "medium" || dateStyle === "short", "invalid dateStyle");
1572
3316
  dateFormat = dataLocaleData.dateFormat[dateStyle];
1573
3317
  }
1574
3318
  if (dateStyle !== void 0 && timeStyle !== void 0) {
@@ -1595,16 +3339,17 @@
1595
3339
  if (timeStyle !== void 0) {
1596
3340
  return timeFormat;
1597
3341
  }
1598
- invariant(dateStyle !== void 0, "dateStyle should not be undefined");
3342
+ (0, import_ecma402_abstract7.invariant)(dateStyle !== void 0, "dateStyle should not be undefined");
1599
3343
  return dateFormat;
1600
3344
  }
1601
3345
 
1602
3346
  // bazel-out/darwin-fastbuild/bin/packages/intl-datetimeformat/lib/src/abstract/ToDateTimeOptions.js
3347
+ var import_ecma402_abstract8 = __toESM(require_ecma402_abstract());
1603
3348
  function ToDateTimeOptions(options, required, defaults) {
1604
3349
  if (options === void 0) {
1605
3350
  options = null;
1606
3351
  } else {
1607
- options = ToObject(options);
3352
+ options = (0, import_ecma402_abstract8.ToObject)(options);
1608
3353
  }
1609
3354
  options = Object.create(options);
1610
3355
  var needDefaults = true;
@@ -1657,7 +3402,7 @@
1657
3402
  }
1658
3403
 
1659
3404
  // bazel-out/darwin-fastbuild/bin/packages/intl-datetimeformat/lib/src/abstract/InitializeDateTimeFormat.js
1660
- var import_intl_localematcher2 = __toESM(require_intl_localematcher());
3405
+ var import_intl_localematcher = __toESM(require_intl_localematcher());
1661
3406
  function isTimeRelated(opt) {
1662
3407
  for (var _i = 0, _a = ["hour", "minute", "second"]; _i < _a.length; _i++) {
1663
3408
  var prop = _a[_i];
@@ -1680,7 +3425,7 @@
1680
3425
  hc = "h12";
1681
3426
  }
1682
3427
  } else {
1683
- invariant(!hour12, "hour12 must not be set");
3428
+ (0, import_ecma402_abstract9.invariant)(!hour12, "hour12 must not be set");
1684
3429
  if (hcDefault === "h11" || hcDefault === "h23") {
1685
3430
  hc = "h23";
1686
3431
  } else {
@@ -1693,29 +3438,29 @@
1693
3438
  var TYPE_REGEX = /^[a-z0-9]{3,8}$/i;
1694
3439
  function InitializeDateTimeFormat(dtf, locales, opts, _a) {
1695
3440
  var getInternalSlots2 = _a.getInternalSlots, availableLocales = _a.availableLocales, localeData = _a.localeData, getDefaultLocale = _a.getDefaultLocale, getDefaultTimeZone = _a.getDefaultTimeZone, relevantExtensionKeys = _a.relevantExtensionKeys, tzData = _a.tzData, uppercaseLinks = _a.uppercaseLinks;
1696
- var requestedLocales = CanonicalizeLocaleList(locales);
3441
+ var requestedLocales = (0, import_ecma402_abstract9.CanonicalizeLocaleList)(locales);
1697
3442
  var options = ToDateTimeOptions(opts, "any", "date");
1698
3443
  var opt = /* @__PURE__ */ Object.create(null);
1699
- var matcher = GetOption(options, "localeMatcher", "string", ["lookup", "best fit"], "best fit");
3444
+ var matcher = (0, import_ecma402_abstract9.GetOption)(options, "localeMatcher", "string", ["lookup", "best fit"], "best fit");
1700
3445
  opt.localeMatcher = matcher;
1701
- var calendar = GetOption(options, "calendar", "string", void 0, void 0);
3446
+ var calendar = (0, import_ecma402_abstract9.GetOption)(options, "calendar", "string", void 0, void 0);
1702
3447
  if (calendar !== void 0 && !TYPE_REGEX.test(calendar)) {
1703
3448
  throw new RangeError("Malformed calendar");
1704
3449
  }
1705
3450
  var internalSlots = getInternalSlots2(dtf);
1706
3451
  opt.ca = calendar;
1707
- var numberingSystem = GetOption(options, "numberingSystem", "string", void 0, void 0);
3452
+ var numberingSystem = (0, import_ecma402_abstract9.GetOption)(options, "numberingSystem", "string", void 0, void 0);
1708
3453
  if (numberingSystem !== void 0 && !TYPE_REGEX.test(numberingSystem)) {
1709
3454
  throw new RangeError("Malformed numbering system");
1710
3455
  }
1711
3456
  opt.nu = numberingSystem;
1712
- var hour12 = GetOption(options, "hour12", "boolean", void 0, void 0);
1713
- var hourCycle = GetOption(options, "hourCycle", "string", ["h11", "h12", "h23", "h24"], void 0);
3457
+ var hour12 = (0, import_ecma402_abstract9.GetOption)(options, "hour12", "boolean", void 0, void 0);
3458
+ var hourCycle = (0, import_ecma402_abstract9.GetOption)(options, "hourCycle", "string", ["h11", "h12", "h23", "h24"], void 0);
1714
3459
  if (hour12 !== void 0) {
1715
3460
  hourCycle = null;
1716
3461
  }
1717
3462
  opt.hc = hourCycle;
1718
- var r = (0, import_intl_localematcher2.ResolveLocale)(availableLocales, requestedLocales, opt, relevantExtensionKeys, localeData, getDefaultLocale);
3463
+ var r = (0, import_intl_localematcher.ResolveLocale)(availableLocales, requestedLocales, opt, relevantExtensionKeys, localeData, getDefaultLocale);
1719
3464
  internalSlots.locale = r.locale;
1720
3465
  calendar = r.ca;
1721
3466
  internalSlots.calendar = calendar;
@@ -1726,35 +3471,35 @@
1726
3471
  var timeZone = options.timeZone;
1727
3472
  if (timeZone !== void 0) {
1728
3473
  timeZone = String(timeZone);
1729
- if (!IsValidTimeZoneName(timeZone, { tzData: tzData, uppercaseLinks: uppercaseLinks })) {
3474
+ if (!(0, import_ecma402_abstract9.IsValidTimeZoneName)(timeZone, { tzData: tzData, uppercaseLinks: uppercaseLinks })) {
1730
3475
  throw new RangeError("Invalid timeZoneName");
1731
3476
  }
1732
- timeZone = CanonicalizeTimeZoneName(timeZone, { tzData: tzData, uppercaseLinks: uppercaseLinks });
3477
+ timeZone = (0, import_ecma402_abstract9.CanonicalizeTimeZoneName)(timeZone, { tzData: tzData, uppercaseLinks: uppercaseLinks });
1733
3478
  } else {
1734
3479
  timeZone = getDefaultTimeZone();
1735
3480
  }
1736
3481
  internalSlots.timeZone = timeZone;
1737
3482
  opt = /* @__PURE__ */ Object.create(null);
1738
- opt.weekday = GetOption(options, "weekday", "string", ["narrow", "short", "long"], void 0);
1739
- opt.era = GetOption(options, "era", "string", ["narrow", "short", "long"], void 0);
1740
- opt.year = GetOption(options, "year", "string", ["2-digit", "numeric"], void 0);
1741
- opt.month = GetOption(options, "month", "string", ["2-digit", "numeric", "narrow", "short", "long"], void 0);
1742
- opt.day = GetOption(options, "day", "string", ["2-digit", "numeric"], void 0);
1743
- opt.hour = GetOption(options, "hour", "string", ["2-digit", "numeric"], void 0);
1744
- opt.minute = GetOption(options, "minute", "string", ["2-digit", "numeric"], void 0);
1745
- opt.second = GetOption(options, "second", "string", ["2-digit", "numeric"], void 0);
1746
- opt.timeZoneName = GetOption(options, "timeZoneName", "string", ["short", "long"], void 0);
1747
- opt.fractionalSecondDigits = GetNumberOption(options, "fractionalSecondDigits", 1, 3, void 0);
3483
+ opt.weekday = (0, import_ecma402_abstract9.GetOption)(options, "weekday", "string", ["narrow", "short", "long"], void 0);
3484
+ opt.era = (0, import_ecma402_abstract9.GetOption)(options, "era", "string", ["narrow", "short", "long"], void 0);
3485
+ opt.year = (0, import_ecma402_abstract9.GetOption)(options, "year", "string", ["2-digit", "numeric"], void 0);
3486
+ opt.month = (0, import_ecma402_abstract9.GetOption)(options, "month", "string", ["2-digit", "numeric", "narrow", "short", "long"], void 0);
3487
+ opt.day = (0, import_ecma402_abstract9.GetOption)(options, "day", "string", ["2-digit", "numeric"], void 0);
3488
+ opt.hour = (0, import_ecma402_abstract9.GetOption)(options, "hour", "string", ["2-digit", "numeric"], void 0);
3489
+ opt.minute = (0, import_ecma402_abstract9.GetOption)(options, "minute", "string", ["2-digit", "numeric"], void 0);
3490
+ opt.second = (0, import_ecma402_abstract9.GetOption)(options, "second", "string", ["2-digit", "numeric"], void 0);
3491
+ opt.timeZoneName = (0, import_ecma402_abstract9.GetOption)(options, "timeZoneName", "string", ["short", "long"], void 0);
3492
+ opt.fractionalSecondDigits = (0, import_ecma402_abstract9.GetNumberOption)(options, "fractionalSecondDigits", 1, 3, void 0);
1748
3493
  var dataLocaleData = localeData[dataLocale];
1749
- invariant(!!dataLocaleData, "Missing locale data for ".concat(dataLocale));
3494
+ (0, import_ecma402_abstract9.invariant)(!!dataLocaleData, "Missing locale data for ".concat(dataLocale));
1750
3495
  var formats = dataLocaleData.formats[calendar];
1751
3496
  if (!formats) {
1752
3497
  throw new RangeError('Calendar "'.concat(calendar, '" is not supported. Try setting "calendar" to 1 of the following: ').concat(Object.keys(dataLocaleData.formats).join(", ")));
1753
3498
  }
1754
- var formatMatcher = GetOption(options, "formatMatcher", "string", ["basic", "best fit"], "best fit");
1755
- var dateStyle = GetOption(options, "dateStyle", "string", ["full", "long", "medium", "short"], void 0);
3499
+ var formatMatcher = (0, import_ecma402_abstract9.GetOption)(options, "formatMatcher", "string", ["basic", "best fit"], "best fit");
3500
+ var dateStyle = (0, import_ecma402_abstract9.GetOption)(options, "dateStyle", "string", ["full", "long", "medium", "short"], void 0);
1756
3501
  internalSlots.dateStyle = dateStyle;
1757
- var timeStyle = GetOption(options, "timeStyle", "string", ["full", "long", "medium", "short"], void 0);
3502
+ var timeStyle = (0, import_ecma402_abstract9.GetOption)(options, "timeStyle", "string", ["full", "long", "medium", "short"], void 0);
1758
3503
  internalSlots.timeStyle = timeStyle;
1759
3504
  var bestFormat;
1760
3505
  if (dateStyle === void 0 && timeStyle === void 0) {
@@ -1807,9 +3552,10 @@
1807
3552
  }
1808
3553
 
1809
3554
  // bazel-out/darwin-fastbuild/bin/packages/intl-datetimeformat/lib/src/abstract/FormatDateTimeToParts.js
3555
+ var import_ecma402_abstract10 = __toESM(require_ecma402_abstract());
1810
3556
  function FormatDateTimeToParts(dtf, x, implDetails) {
1811
3557
  var parts = PartitionDateTimePattern(dtf, x, implDetails);
1812
- var result = ArrayCreate(0);
3558
+ var result = (0, import_ecma402_abstract10.ArrayCreate)(0);
1813
3559
  for (var _i = 0, parts_1 = parts; _i < parts_1.length; _i++) {
1814
3560
  var part = parts_1[_i];
1815
3561
  result.push({
@@ -1821,6 +3567,7 @@
1821
3567
  }
1822
3568
 
1823
3569
  // bazel-out/darwin-fastbuild/bin/packages/intl-datetimeformat/lib/src/abstract/PartitionDateTimeRangePattern.js
3570
+ var import_ecma402_abstract11 = __toESM(require_ecma402_abstract());
1824
3571
  var TABLE_2_FIELDS = [
1825
3572
  "era",
1826
3573
  "year",
@@ -1834,11 +3581,11 @@
1834
3581
  "fractionalSecondDigits"
1835
3582
  ];
1836
3583
  function PartitionDateTimeRangePattern(dtf, x, y, implDetails) {
1837
- x = TimeClip(x);
3584
+ x = (0, import_ecma402_abstract11.TimeClip)(x);
1838
3585
  if (isNaN(x)) {
1839
3586
  throw new RangeError("Invalid start time");
1840
3587
  }
1841
- y = TimeClip(y);
3588
+ y = (0, import_ecma402_abstract11.TimeClip)(y);
1842
3589
  if (isNaN(y)) {
1843
3590
  throw new RangeError("Invalid end time");
1844
3591
  }
@@ -1872,13 +3619,13 @@
1872
3619
  }
1873
3620
  var v1 = Math.floor(tm1.millisecond * Math.pow(10, fractionalSecondDigits - 3));
1874
3621
  var v2 = Math.floor(tm2.millisecond * Math.pow(10, fractionalSecondDigits - 3));
1875
- if (!SameValue(v1, v2)) {
3622
+ if (!(0, import_ecma402_abstract11.SameValue)(v1, v2)) {
1876
3623
  dateFieldsPracticallyEqual = false;
1877
3624
  }
1878
3625
  } else {
1879
3626
  var v1 = tm1[fieldName];
1880
3627
  var v2 = tm2[fieldName];
1881
- if (!SameValue(v1, v2)) {
3628
+ if (!(0, import_ecma402_abstract11.SameValue)(v1, v2)) {
1882
3629
  dateFieldsPracticallyEqual = false;
1883
3630
  }
1884
3631
  }
@@ -1886,10 +3633,10 @@
1886
3633
  }
1887
3634
  }
1888
3635
  if (dateFieldsPracticallyEqual) {
1889
- var result_2 = FormatDateTimePattern(dtf, PartitionPattern(pattern), x, implDetails);
3636
+ var result_2 = FormatDateTimePattern(dtf, (0, import_ecma402_abstract11.PartitionPattern)(pattern), x, implDetails);
1890
3637
  for (var _a = 0, result_1 = result_2; _a < result_1.length; _a++) {
1891
3638
  var r = result_1[_a];
1892
- r.source = RangePatternType.shared;
3639
+ r.source = import_ecma402_abstract11.RangePatternType.shared;
1893
3640
  }
1894
3641
  return result_2;
1895
3642
  }
@@ -1907,12 +3654,12 @@
1907
3654
  var rangePatternPart = _e[_d];
1908
3655
  var source = rangePatternPart.source, pattern_1 = rangePatternPart.pattern;
1909
3656
  var z = void 0;
1910
- if (source === RangePatternType.startRange || source === RangePatternType.shared) {
3657
+ if (source === import_ecma402_abstract11.RangePatternType.startRange || source === import_ecma402_abstract11.RangePatternType.shared) {
1911
3658
  z = x;
1912
3659
  } else {
1913
3660
  z = y;
1914
3661
  }
1915
- var patternParts = PartitionPattern(pattern_1);
3662
+ var patternParts = (0, import_ecma402_abstract11.PartitionPattern)(pattern_1);
1916
3663
  var partResult = FormatDateTimePattern(dtf, patternParts, z, implDetails);
1917
3664
  for (var _f = 0, partResult_1 = partResult; _f < partResult_1.length; _f++) {
1918
3665
  var r = partResult_1[_f];
@@ -1976,7 +3723,7 @@
1976
3723
  enumerable: false,
1977
3724
  configurable: true,
1978
3725
  get: function() {
1979
- if (typeof this !== "object" || !OrdinaryHasInstance(DateTimeFormat, this)) {
3726
+ if (typeof this !== "object" || !(0, import_ecma402_abstract12.OrdinaryHasInstance)(DateTimeFormat, this)) {
1980
3727
  throw TypeError("Intl.DateTimeFormat format property accessor called on incompatible receiver");
1981
3728
  }
1982
3729
  var internalSlots = getInternalSlots(this);
@@ -2021,7 +3768,7 @@
2021
3768
  } catch (e) {
2022
3769
  }
2023
3770
  var DateTimeFormat = function(locales, options) {
2024
- if (!this || !OrdinaryHasInstance(DateTimeFormat, this)) {
3771
+ if (!this || !(0, import_ecma402_abstract12.OrdinaryHasInstance)(DateTimeFormat, this)) {
2025
3772
  return new DateTimeFormat(locales, options);
2026
3773
  }
2027
3774
  InitializeDateTimeFormat(this, locales, options, {
@@ -2037,16 +3784,16 @@
2037
3784
  var internalSlots = getInternalSlots(this);
2038
3785
  var dataLocale = internalSlots.dataLocale;
2039
3786
  var dataLocaleData = DateTimeFormat.localeData[dataLocale];
2040
- invariant(dataLocaleData !== void 0, "Cannot load locale-dependent data for ".concat(dataLocale, "."));
3787
+ (0, import_ecma402_abstract12.invariant)(dataLocaleData !== void 0, "Cannot load locale-dependent data for ".concat(dataLocale, "."));
2041
3788
  };
2042
- defineProperty(DateTimeFormat, "supportedLocalesOf", {
3789
+ (0, import_ecma402_abstract12.defineProperty)(DateTimeFormat, "supportedLocalesOf", {
2043
3790
  value: function supportedLocalesOf(locales, options) {
2044
- return SupportedLocales(DateTimeFormat.availableLocales, CanonicalizeLocaleList(locales), options);
3791
+ return (0, import_ecma402_abstract12.SupportedLocales)(DateTimeFormat.availableLocales, (0, import_ecma402_abstract12.CanonicalizeLocaleList)(locales), options);
2045
3792
  }
2046
3793
  });
2047
- defineProperty(DateTimeFormat.prototype, "resolvedOptions", {
3794
+ (0, import_ecma402_abstract12.defineProperty)(DateTimeFormat.prototype, "resolvedOptions", {
2048
3795
  value: function resolvedOptions() {
2049
- if (typeof this !== "object" || !OrdinaryHasInstance(DateTimeFormat, this)) {
3796
+ if (typeof this !== "object" || !(0, import_ecma402_abstract12.OrdinaryHasInstance)(DateTimeFormat, this)) {
2050
3797
  throw TypeError("Method Intl.DateTimeFormat.prototype.resolvedOptions called on incompatible receiver");
2051
3798
  }
2052
3799
  var internalSlots = getInternalSlots(this);
@@ -2072,12 +3819,12 @@
2072
3819
  return ro;
2073
3820
  }
2074
3821
  });
2075
- defineProperty(DateTimeFormat.prototype, "formatToParts", {
3822
+ (0, import_ecma402_abstract12.defineProperty)(DateTimeFormat.prototype, "formatToParts", {
2076
3823
  value: function formatToParts(date) {
2077
3824
  if (date === void 0) {
2078
3825
  date = Date.now();
2079
3826
  } else {
2080
- date = ToNumber(date);
3827
+ date = (0, import_ecma402_abstract12.ToNumber)(date);
2081
3828
  }
2082
3829
  return FormatDateTimeToParts(this, date, {
2083
3830
  getInternalSlots: getInternalSlots,
@@ -2087,7 +3834,7 @@
2087
3834
  });
2088
3835
  }
2089
3836
  });
2090
- defineProperty(DateTimeFormat.prototype, "formatRangeToParts", {
3837
+ (0, import_ecma402_abstract12.defineProperty)(DateTimeFormat.prototype, "formatRangeToParts", {
2091
3838
  value: function formatRangeToParts(startDate, endDate) {
2092
3839
  var dtf = this;
2093
3840
  if (typeof dtf !== "object") {
@@ -2096,8 +3843,8 @@
2096
3843
  if (startDate === void 0 || endDate === void 0) {
2097
3844
  throw new TypeError("startDate/endDate cannot be undefined");
2098
3845
  }
2099
- var x = ToNumber(startDate);
2100
- var y = ToNumber(endDate);
3846
+ var x = (0, import_ecma402_abstract12.ToNumber)(startDate);
3847
+ var y = (0, import_ecma402_abstract12.ToNumber)(endDate);
2101
3848
  return FormatDateTimeRangeToParts(dtf, x, y, {
2102
3849
  getInternalSlots: getInternalSlots,
2103
3850
  localeData: DateTimeFormat.localeData,
@@ -2106,7 +3853,7 @@
2106
3853
  });
2107
3854
  }
2108
3855
  });
2109
- defineProperty(DateTimeFormat.prototype, "formatRange", {
3856
+ (0, import_ecma402_abstract12.defineProperty)(DateTimeFormat.prototype, "formatRange", {
2110
3857
  value: function formatRange(startDate, endDate) {
2111
3858
  var dtf = this;
2112
3859
  if (typeof dtf !== "object") {
@@ -2115,8 +3862,8 @@
2115
3862
  if (startDate === void 0 || endDate === void 0) {
2116
3863
  throw new TypeError("startDate/endDate cannot be undefined");
2117
3864
  }
2118
- var x = ToNumber(startDate);
2119
- var y = ToNumber(endDate);
3865
+ var x = (0, import_ecma402_abstract12.ToNumber)(startDate);
3866
+ var y = (0, import_ecma402_abstract12.ToNumber)(endDate);
2120
3867
  return FormatDateTimeRange(dtf, x, y, {
2121
3868
  getInternalSlots: getInternalSlots,
2122
3869
  localeData: DateTimeFormat.localeData,
@@ -2129,13 +3876,13 @@
2129
3876
  DateTimeFormat.__setDefaultTimeZone = function(timeZone) {
2130
3877
  if (timeZone !== void 0) {
2131
3878
  timeZone = String(timeZone);
2132
- if (!IsValidTimeZoneName(timeZone, {
3879
+ if (!(0, import_ecma402_abstract12.IsValidTimeZoneName)(timeZone, {
2133
3880
  tzData: DateTimeFormat.tzData,
2134
3881
  uppercaseLinks: UPPERCASED_LINKS
2135
3882
  })) {
2136
3883
  throw new RangeError("Invalid timeZoneName");
2137
3884
  }
2138
- timeZone = CanonicalizeTimeZoneName(timeZone, {
3885
+ timeZone = (0, import_ecma402_abstract12.CanonicalizeTimeZoneName)(timeZone, {
2139
3886
  tzData: DateTimeFormat.tzData,
2140
3887
  uppercaseLinks: UPPERCASED_LINKS
2141
3888
  });
@@ -2155,8 +3902,8 @@
2155
3902
  data[_i] = arguments[_i];
2156
3903
  }
2157
3904
  var _loop_1 = function(d2, locale2) {
2158
- var dateFormat = d2.dateFormat, timeFormat = d2.timeFormat, dateTimeFormat = d2.dateTimeFormat, formats = d2.formats, intervalFormats = d2.intervalFormats, rawData = __rest(d2, ["dateFormat", "timeFormat", "dateTimeFormat", "formats", "intervalFormats"]);
2159
- var processedData = __assign(__assign({}, rawData), { dateFormat: {
3905
+ var dateFormat = d2.dateFormat, timeFormat = d2.timeFormat, dateTimeFormat = d2.dateTimeFormat, formats = d2.formats, intervalFormats = d2.intervalFormats, rawData = (0, import_tslib4.__rest)(d2, ["dateFormat", "timeFormat", "dateTimeFormat", "formats", "intervalFormats"]);
3906
+ var processedData = (0, import_tslib4.__assign)((0, import_tslib4.__assign)({}, rawData), { dateFormat: {
2160
3907
  full: parseDateTimeSkeleton(dateFormat.full),
2161
3908
  long: parseDateTimeSkeleton(dateFormat.long),
2162
3909
  medium: parseDateTimeSkeleton(dateFormat.medium),
@@ -2223,8 +3970,11 @@
2223
3970
  } catch (e) {
2224
3971
  }
2225
3972
 
3973
+ // bazel-out/darwin-fastbuild/bin/packages/intl-datetimeformat/lib/polyfill.js
3974
+ var import_ecma402_abstract13 = __toESM(require_ecma402_abstract());
3975
+
2226
3976
  // bazel-out/darwin-fastbuild/bin/packages/intl-datetimeformat/lib/should-polyfill.js
2227
- var import_intl_localematcher3 = __toESM(require_intl_localematcher());
3977
+ var import_intl_localematcher2 = __toESM(require_intl_localematcher());
2228
3978
 
2229
3979
  // bazel-out/darwin-fastbuild/bin/packages/intl-datetimeformat/lib/supported-locales.js
2230
3980
  var supportedLocales = ["af-NA", "af", "agq", "ak", "am", "ar-AE", "ar-BH", "ar-DJ", "ar-DZ", "ar-EG", "ar-EH", "ar-ER", "ar-IL", "ar-IQ", "ar-JO", "ar-KM", "ar-KW", "ar-LB", "ar-LY", "ar-MA", "ar-MR", "ar-OM", "ar-PS", "ar-QA", "ar-SA", "ar-SD", "ar-SO", "ar-SS", "ar-SY", "ar-TD", "ar-TN", "ar-YE", "ar", "as", "asa", "ast", "az-Cyrl", "az-Latn", "az", "bas", "be-tarask", "be", "bem", "bez", "bg", "bm", "bn-IN", "bn", "bo-IN", "bo", "br", "brx", "bs-Cyrl", "bs-Latn", "bs", "ca-AD", "ca-ES-valencia", "ca-FR", "ca-IT", "ca", "ccp-IN", "ccp", "ce", "ceb", "cgg", "chr", "ckb-IR", "ckb", "cs", "cy", "da-GL", "da", "dav", "de-AT", "de-BE", "de-CH", "de-IT", "de-LI", "de-LU", "de", "dje", "doi", "dsb", "dua", "dyo", "dz", "ebu", "ee-TG", "ee", "el-CY", "el", "en-001", "en-150", "en-AE", "en-AG", "en-AI", "en-AS", "en-AT", "en-AU", "en-BB", "en-BE", "en-BI", "en-BM", "en-BS", "en-BW", "en-BZ", "en-CA", "en-CC", "en-CH", "en-CK", "en-CM", "en-CX", "en-CY", "en-DE", "en-DG", "en-DK", "en-DM", "en-ER", "en-FI", "en-FJ", "en-FK", "en-FM", "en-GB", "en-GD", "en-GG", "en-GH", "en-GI", "en-GM", "en-GU", "en-GY", "en-HK", "en-IE", "en-IL", "en-IM", "en-IN", "en-IO", "en-JE", "en-JM", "en-KE", "en-KI", "en-KN", "en-KY", "en-LC", "en-LR", "en-LS", "en-MG", "en-MH", "en-MO", "en-MP", "en-MS", "en-MT", "en-MU", "en-MW", "en-MY", "en-NA", "en-NF", "en-NG", "en-NL", "en-NR", "en-NU", "en-NZ", "en-PG", "en-PH", "en-PK", "en-PN", "en-PR", "en-PW", "en-RW", "en-SB", "en-SC", "en-SD", "en-SE", "en-SG", "en-SH", "en-SI", "en-SL", "en-SS", "en-SX", "en-SZ", "en-TC", "en-TK", "en-TO", "en-TT", "en-TV", "en-TZ", "en-UG", "en-UM", "en-VC", "en-VG", "en-VI", "en-VU", "en-WS", "en-ZA", "en-ZM", "en-ZW", "en", "eo", "es-419", "es-AR", "es-BO", "es-BR", "es-BZ", "es-CL", "es-CO", "es-CR", "es-CU", "es-DO", "es-EA", "es-EC", "es-GQ", "es-GT", "es-HN", "es-IC", "es-MX", "es-NI", "es-PA", "es-PE", "es-PH", "es-PR", "es-PY", "es-SV", "es-US", "es-UY", "es-VE", "es", "et", "eu", "ewo", "fa-AF", "fa", "ff-Adlm-BF", "ff-Adlm-CM", "ff-Adlm-GH", "ff-Adlm-GM", "ff-Adlm-GW", "ff-Adlm-LR", "ff-Adlm-MR", "ff-Adlm-NE", "ff-Adlm-NG", "ff-Adlm-SL", "ff-Adlm-SN", "ff-Adlm", "ff-Latn-BF", "ff-Latn-CM", "ff-Latn-GH", "ff-Latn-GM", "ff-Latn-GN", "ff-Latn-GW", "ff-Latn-LR", "ff-Latn-MR", "ff-Latn-NE", "ff-Latn-NG", "ff-Latn-SL", "ff-Latn", "ff", "fi", "fil", "fo-DK", "fo", "fr-BE", "fr-BF", "fr-BI", "fr-BJ", "fr-BL", "fr-CA", "fr-CD", "fr-CF", "fr-CG", "fr-CH", "fr-CI", "fr-CM", "fr-DJ", "fr-DZ", "fr-GA", "fr-GF", "fr-GN", "fr-GP", "fr-GQ", "fr-HT", "fr-KM", "fr-LU", "fr-MA", "fr-MC", "fr-MF", "fr-MG", "fr-ML", "fr-MQ", "fr-MR", "fr-MU", "fr-NC", "fr-NE", "fr-PF", "fr-PM", "fr-RE", "fr-RW", "fr-SC", "fr-SN", "fr-SY", "fr-TD", "fr-TG", "fr-TN", "fr-VU", "fr-WF", "fr-YT", "fr", "fur", "fy", "ga-GB", "ga", "gd", "gl", "gsw-FR", "gsw-LI", "gsw", "gu", "guz", "gv", "ha-GH", "ha-NE", "ha", "haw", "he", "hi", "hr-BA", "hr", "hsb", "hu", "hy", "ia", "id", "ig", "ii", "is", "it-CH", "it-SM", "it-VA", "it", "ja", "jgo", "jmc", "jv", "ka", "kab", "kam", "kde", "kea", "kgp", "khq", "ki", "kk", "kkj", "kl", "kln", "km", "kn", "ko-KP", "ko", "kok", "ks-Arab", "ks", "ksb", "ksf", "ksh", "ku", "kw", "ky", "lag", "lb", "lg", "lkt", "ln-AO", "ln-CF", "ln-CG", "ln", "lo", "lrc-IQ", "lrc", "lt", "lu", "luo", "luy", "lv", "mai", "mas-TZ", "mas", "mer", "mfe", "mg", "mgh", "mgo", "mi", "mk", "ml", "mn", "mni-Beng", "mni", "mr", "ms-BN", "ms-ID", "ms-SG", "ms", "mt", "mua", "my", "mzn", "naq", "nb-SJ", "nb", "nd", "nds-NL", "nds", "ne-IN", "ne", "nl-AW", "nl-BE", "nl-BQ", "nl-CW", "nl-SR", "nl-SX", "nl", "nmg", "nn", "nnh", "no", "nus", "nyn", "om-KE", "om", "or", "os-RU", "os", "pa-Arab", "pa-Guru", "pa", "pcm", "pl", "ps-PK", "ps", "pt-AO", "pt-CH", "pt-CV", "pt-GQ", "pt-GW", "pt-LU", "pt-MO", "pt-MZ", "pt-PT", "pt-ST", "pt-TL", "pt", "qu-BO", "qu-EC", "qu", "rm", "rn", "ro-MD", "ro", "rof", "ru-BY", "ru-KG", "ru-KZ", "ru-MD", "ru-UA", "ru", "rw", "rwk", "sa", "sah", "saq", "sat-Olck", "sat", "sbp", "sc", "sd-Arab", "sd-Deva", "sd", "se-FI", "se-SE", "se", "seh", "ses", "sg", "shi-Latn", "shi-Tfng", "shi", "si", "sk", "sl", "smn", "sn", "so-DJ", "so-ET", "so-KE", "so", "sq-MK", "sq-XK", "sq", "sr-Cyrl-BA", "sr-Cyrl-ME", "sr-Cyrl-XK", "sr-Cyrl", "sr-Latn-BA", "sr-Latn-ME", "sr-Latn-XK", "sr-Latn", "sr", "su-Latn", "su", "sv-AX", "sv-FI", "sv", "sw-CD", "sw-KE", "sw-UG", "sw", "ta-LK", "ta-MY", "ta-SG", "ta", "te", "teo-KE", "teo", "tg", "th", "ti-ER", "ti", "tk", "to", "tr-CY", "tr", "tt", "twq", "tzm", "ug", "uk", "und", "ur-IN", "ur", "uz-Arab", "uz-Cyrl", "uz-Latn", "uz", "vai-Latn", "vai-Vaii", "vai", "vi", "vun", "wae", "wo", "xh", "xog", "yav", "yi", "yo-BJ", "yo", "yrl-CO", "yrl-VE", "yrl", "yue-Hans", "yue-Hant", "yue", "zgh", "zh-Hans-HK", "zh-Hans-MO", "zh-Hans-SG", "zh-Hans", "zh-Hant-HK", "zh-Hant-MO", "zh-Hant", "zh", "zu"];
@@ -2271,7 +4021,7 @@
2271
4021
  locale = "en";
2272
4022
  }
2273
4023
  if (!("DateTimeFormat" in Intl) || !("formatToParts" in Intl.DateTimeFormat.prototype) || !("formatRange" in Intl.DateTimeFormat.prototype) || hasChromeLt71Bug() || hasUnthrownDateTimeStyleBug() || !supportsDateStyle() || !supportedLocalesOf2(locale)) {
2274
- return locale ? (0, import_intl_localematcher3.match)([locale], supportedLocales, "en") : void 0;
4024
+ return locale ? (0, import_intl_localematcher2.match)([locale], supportedLocales, "en") : void 0;
2275
4025
  }
2276
4026
  }
2277
4027
 
@@ -2291,36 +4041,34 @@
2291
4041
 
2292
4042
  // bazel-out/darwin-fastbuild/bin/packages/intl-datetimeformat/lib/polyfill.js
2293
4043
  if (shouldPolyfill()) {
2294
- defineProperty(Intl, "DateTimeFormat", { value: DateTimeFormat });
2295
- defineProperty(Date.prototype, "toLocaleString", {
4044
+ (0, import_ecma402_abstract13.defineProperty)(Intl, "DateTimeFormat", { value: DateTimeFormat });
4045
+ (0, import_ecma402_abstract13.defineProperty)(Date.prototype, "toLocaleString", {
2296
4046
  value: function toLocaleString2(locales, options) {
2297
- return toLocaleString(this, locales, options);
4047
+ try {
4048
+ return toLocaleString(this, locales, options);
4049
+ } catch (error) {
4050
+ return "Invalid Date";
4051
+ }
2298
4052
  }
2299
4053
  });
2300
- defineProperty(Date.prototype, "toLocaleDateString", {
4054
+ (0, import_ecma402_abstract13.defineProperty)(Date.prototype, "toLocaleDateString", {
2301
4055
  value: function toLocaleDateString2(locales, options) {
2302
- return toLocaleDateString(this, locales, options);
4056
+ try {
4057
+ return toLocaleDateString(this, locales, options);
4058
+ } catch (error) {
4059
+ return "Invalid Date";
4060
+ }
2303
4061
  }
2304
4062
  });
2305
- defineProperty(Date.prototype, "toLocaleTimeString", {
4063
+ (0, import_ecma402_abstract13.defineProperty)(Date.prototype, "toLocaleTimeString", {
2306
4064
  value: function toLocaleTimeString2(locales, options) {
2307
- return toLocaleTimeString(this, locales, options);
4065
+ try {
4066
+ return toLocaleTimeString(this, locales, options);
4067
+ } catch (error) {
4068
+ return "Invalid Date";
4069
+ }
2308
4070
  }
2309
4071
  });
2310
4072
  }
2311
4073
  })();
2312
- /*! *****************************************************************************
2313
- Copyright (c) Microsoft Corporation.
2314
-
2315
- Permission to use, copy, modify, and/or distribute this software for any
2316
- purpose with or without fee is hereby granted.
2317
-
2318
- THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
2319
- REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
2320
- AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
2321
- INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
2322
- LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
2323
- OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
2324
- PERFORMANCE OF THIS SOFTWARE.
2325
- ***************************************************************************** */
2326
4074
  //# sourceMappingURL=polyfill.iife.js.map