@formatjs/intl-numberformat 7.4.3 → 8.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.
Files changed (2) hide show
  1. package/package.json +4 -4
  2. package/polyfill.iife.js +2408 -1092
package/polyfill.iife.js CHANGED
@@ -1,1204 +1,2514 @@
1
1
  (function() {
2
- // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/CanonicalizeLocaleList.js
3
- function CanonicalizeLocaleList(locales) {
4
- return Intl.getCanonicalLocales(locales);
5
- }
2
+ var __create = Object.create;
3
+ var __defProp = Object.defineProperty;
4
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
5
+ var __getOwnPropNames = Object.getOwnPropertyNames;
6
+ var __getProtoOf = Object.getPrototypeOf;
7
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
8
+ var __commonJS = function(cb, mod) {
9
+ return function __require() {
10
+ return mod || (0, cb[__getOwnPropNames(cb)[0]])((mod = { exports: {} }).exports, mod), mod.exports;
11
+ };
12
+ };
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++) {
16
+ key = keys[i];
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
+ };
6
27
 
7
- // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/262.js
8
- function ToString(o) {
9
- if (typeof o === "symbol") {
10
- throw TypeError("Cannot convert a Symbol value to a string");
11
- }
12
- return String(o);
13
- }
14
- function ToNumber(val) {
15
- if (val === void 0) {
16
- return NaN;
17
- }
18
- if (val === null) {
19
- return 0;
20
- }
21
- if (typeof val === "boolean") {
22
- return val ? 1 : 0;
23
- }
24
- if (typeof val === "number") {
25
- return val;
26
- }
27
- if (typeof val === "symbol" || typeof val === "bigint") {
28
- throw new TypeError("Cannot convert symbol/bigint to number");
29
- }
30
- return Number(val);
31
- }
32
- function ToObject(arg) {
33
- if (arg == null) {
34
- throw new TypeError("undefined/null cannot be converted to object");
35
- }
36
- return Object(arg);
37
- }
38
- function SameValue(x, y) {
39
- if (Object.is) {
40
- return Object.is(x, y);
41
- }
42
- if (x === y) {
43
- return x !== 0 || 1 / x === 1 / y;
44
- }
45
- return x !== x && y !== y;
46
- }
47
- function ArrayCreate(len) {
48
- return new Array(len);
49
- }
50
- function HasOwnProperty(o, prop) {
51
- return Object.prototype.hasOwnProperty.call(o, prop);
52
- }
53
- var MINUTES_PER_HOUR = 60;
54
- var SECONDS_PER_MINUTE = 60;
55
- var MS_PER_SECOND = 1e3;
56
- var MS_PER_MINUTE = MS_PER_SECOND * SECONDS_PER_MINUTE;
57
- var MS_PER_HOUR = MS_PER_MINUTE * MINUTES_PER_HOUR;
58
- function IsCallable(fn) {
59
- return typeof fn === "function";
60
- }
61
- function OrdinaryHasInstance(C, O, internalSlots) {
62
- if (!IsCallable(C)) {
63
- return false;
64
- }
65
- if (internalSlots === null || internalSlots === void 0 ? void 0 : internalSlots.boundTargetFunction) {
66
- var BC = internalSlots === null || internalSlots === void 0 ? void 0 : internalSlots.boundTargetFunction;
67
- return O instanceof BC;
68
- }
69
- if (typeof O !== "object") {
70
- return false;
71
- }
72
- var P = C.prototype;
73
- if (typeof P !== "object") {
74
- throw new TypeError("OrdinaryHasInstance called on an object with an invalid prototype property.");
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 __assign;
33
+ var __rest;
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
+ __assign = 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
+ __rest = 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", __assign);
441
+ exporter("__rest", __rest);
442
+ exporter("__decorate", __decorate);
443
+ exporter("__param", __param);
444
+ exporter("__metadata", __metadata);
445
+ exporter("__awaiter", __awaiter);
446
+ exporter("__generator", __generator);
447
+ exporter("__exportStar", __exportStar);
448
+ exporter("__createBinding", __createBinding);
449
+ exporter("__values", __values);
450
+ exporter("__read", __read);
451
+ exporter("__spread", __spread);
452
+ exporter("__spreadArrays", __spreadArrays);
453
+ exporter("__spreadArray", __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
+ });
75
465
  }
76
- return Object.prototype.isPrototypeOf.call(P, O);
77
- }
466
+ });
78
467
 
79
- // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/CoerceOptionsToObject.js
80
- function CoerceOptionsToObject(options) {
81
- if (typeof options === "undefined") {
82
- return /* @__PURE__ */ Object.create(null);
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 CanonicalizeLocaleList2(locales) {
475
+ return Intl.getCanonicalLocales(locales);
476
+ }
477
+ exports.CanonicalizeLocaleList = CanonicalizeLocaleList2;
83
478
  }
84
- return ToObject(options);
85
- }
479
+ });
86
480
 
87
- // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/DefaultNumberOption.js
88
- function DefaultNumberOption(val, min, max, fallback) {
89
- if (val !== void 0) {
90
- val = Number(val);
91
- if (isNaN(val) || val < min || val > max) {
92
- throw new RangeError("".concat(val, " is outside of range [").concat(min, ", ").concat(max, "]"));
93
- }
94
- return Math.floor(val);
481
+ // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/CanonicalizeTimeZoneName.js
482
+ var require_CanonicalizeTimeZoneName = __commonJS({
483
+ "bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/CanonicalizeTimeZoneName.js": function(exports) {
484
+ "use strict";
485
+ Object.defineProperty(exports, "__esModule", { value: true });
486
+ exports.CanonicalizeTimeZoneName = void 0;
487
+ function CanonicalizeTimeZoneName(tz, _a) {
488
+ var tzData = _a.tzData, uppercaseLinks = _a.uppercaseLinks;
489
+ var uppercasedTz = tz.toUpperCase();
490
+ var uppercasedZones = Object.keys(tzData).reduce(function(all, z) {
491
+ all[z.toUpperCase()] = z;
492
+ return all;
493
+ }, {});
494
+ var ianaTimeZone = uppercaseLinks[uppercasedTz] || uppercasedZones[uppercasedTz];
495
+ if (ianaTimeZone === "Etc/UTC" || ianaTimeZone === "Etc/GMT") {
496
+ return "UTC";
497
+ }
498
+ return ianaTimeZone;
499
+ }
500
+ exports.CanonicalizeTimeZoneName = CanonicalizeTimeZoneName;
95
501
  }
96
- return fallback;
97
- }
98
-
99
- // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/GetNumberOption.js
100
- function GetNumberOption(options, property, minimum, maximum, fallback) {
101
- var val = options[property];
102
- return DefaultNumberOption(val, minimum, maximum, fallback);
103
- }
502
+ });
104
503
 
105
- // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/GetOption.js
106
- function GetOption(opts, prop, type, values, fallback) {
107
- if (typeof opts !== "object") {
108
- throw new TypeError("Options must be an object");
109
- }
110
- var value = opts[prop];
111
- if (value !== void 0) {
112
- if (type !== "boolean" && type !== "string") {
113
- throw new TypeError("invalid type");
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) || SameValue(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 (SameValue(integer, -0)) {
549
+ return 0;
550
+ }
551
+ return integer;
552
+ }
553
+ function TimeClip(time) {
554
+ if (!isFinite(time)) {
555
+ return NaN;
556
+ }
557
+ if (Math.abs(time) > 8.64 * 1e15) {
558
+ return NaN;
559
+ }
560
+ return ToInteger(time);
561
+ }
562
+ exports.TimeClip = TimeClip;
563
+ function ToObject(arg) {
564
+ if (arg == null) {
565
+ throw new TypeError("undefined/null cannot be converted to object");
566
+ }
567
+ return Object(arg);
568
+ }
569
+ exports.ToObject = ToObject;
570
+ function SameValue(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 = SameValue;
580
+ function ArrayCreate(len) {
581
+ return new Array(len);
582
+ }
583
+ exports.ArrayCreate = ArrayCreate;
584
+ function HasOwnProperty(o, prop) {
585
+ return Object.prototype.hasOwnProperty.call(o, prop);
586
+ }
587
+ exports.HasOwnProperty = HasOwnProperty;
588
+ function Type(x) {
589
+ if (x === null) {
590
+ return "Null";
591
+ }
592
+ if (typeof x === "undefined") {
593
+ return "Undefined";
594
+ }
595
+ if (typeof x === "function" || typeof x === "object") {
596
+ return "Object";
597
+ }
598
+ if (typeof x === "number") {
599
+ return "Number";
600
+ }
601
+ if (typeof x === "boolean") {
602
+ return "Boolean";
603
+ }
604
+ if (typeof x === "string") {
605
+ return "String";
606
+ }
607
+ if (typeof x === "symbol") {
608
+ return "Symbol";
609
+ }
610
+ if (typeof x === "bigint") {
611
+ return "BigInt";
612
+ }
613
+ }
614
+ exports.Type = Type;
615
+ var MS_PER_DAY = 864e5;
616
+ function mod(x, y) {
617
+ return x - Math.floor(x / y) * y;
618
+ }
619
+ function Day(t) {
620
+ return Math.floor(t / MS_PER_DAY);
621
+ }
622
+ exports.Day = Day;
623
+ function WeekDay(t) {
624
+ return mod(Day(t) + 4, 7);
625
+ }
626
+ exports.WeekDay = WeekDay;
627
+ function DayFromYear(y) {
628
+ return Date.UTC(y, 0) / MS_PER_DAY;
629
+ }
630
+ exports.DayFromYear = DayFromYear;
631
+ function TimeFromYear(y) {
632
+ return Date.UTC(y, 0);
633
+ }
634
+ exports.TimeFromYear = TimeFromYear;
635
+ function YearFromTime(t) {
636
+ return new Date(t).getUTCFullYear();
637
+ }
638
+ exports.YearFromTime = YearFromTime;
639
+ function DaysInYear(y) {
640
+ if (y % 4 !== 0) {
641
+ return 365;
642
+ }
643
+ if (y % 100 !== 0) {
644
+ return 366;
645
+ }
646
+ if (y % 400 !== 0) {
647
+ return 365;
648
+ }
649
+ return 366;
650
+ }
651
+ exports.DaysInYear = DaysInYear;
652
+ function DayWithinYear(t) {
653
+ return Day(t) - DayFromYear(YearFromTime(t));
654
+ }
655
+ exports.DayWithinYear = DayWithinYear;
656
+ function InLeapYear(t) {
657
+ return DaysInYear(YearFromTime(t)) === 365 ? 0 : 1;
658
+ }
659
+ exports.InLeapYear = InLeapYear;
660
+ function MonthFromTime(t) {
661
+ var dwy = DayWithinYear(t);
662
+ var leap = InLeapYear(t);
663
+ if (dwy >= 0 && dwy < 31) {
664
+ return 0;
665
+ }
666
+ if (dwy < 59 + leap) {
667
+ return 1;
668
+ }
669
+ if (dwy < 90 + leap) {
670
+ return 2;
671
+ }
672
+ if (dwy < 120 + leap) {
673
+ return 3;
674
+ }
675
+ if (dwy < 151 + leap) {
676
+ return 4;
677
+ }
678
+ if (dwy < 181 + leap) {
679
+ return 5;
680
+ }
681
+ if (dwy < 212 + leap) {
682
+ return 6;
683
+ }
684
+ if (dwy < 243 + leap) {
685
+ return 7;
686
+ }
687
+ if (dwy < 273 + leap) {
688
+ return 8;
689
+ }
690
+ if (dwy < 304 + leap) {
691
+ return 9;
692
+ }
693
+ if (dwy < 334 + leap) {
694
+ return 10;
695
+ }
696
+ if (dwy < 365 + leap) {
697
+ return 11;
698
+ }
699
+ throw new Error("Invalid time");
114
700
  }
115
- if (type === "boolean") {
116
- value = Boolean(value);
701
+ exports.MonthFromTime = MonthFromTime;
702
+ function DateFromTime(t) {
703
+ var dwy = DayWithinYear(t);
704
+ var mft = MonthFromTime(t);
705
+ var leap = InLeapYear(t);
706
+ if (mft === 0) {
707
+ return dwy + 1;
708
+ }
709
+ if (mft === 1) {
710
+ return dwy - 30;
711
+ }
712
+ if (mft === 2) {
713
+ return dwy - 58 - leap;
714
+ }
715
+ if (mft === 3) {
716
+ return dwy - 89 - leap;
717
+ }
718
+ if (mft === 4) {
719
+ return dwy - 119 - leap;
720
+ }
721
+ if (mft === 5) {
722
+ return dwy - 150 - leap;
723
+ }
724
+ if (mft === 6) {
725
+ return dwy - 180 - leap;
726
+ }
727
+ if (mft === 7) {
728
+ return dwy - 211 - leap;
729
+ }
730
+ if (mft === 8) {
731
+ return dwy - 242 - leap;
732
+ }
733
+ if (mft === 9) {
734
+ return dwy - 272 - leap;
735
+ }
736
+ if (mft === 10) {
737
+ return dwy - 303 - leap;
738
+ }
739
+ if (mft === 11) {
740
+ return dwy - 333 - leap;
741
+ }
742
+ throw new Error("Invalid time");
743
+ }
744
+ exports.DateFromTime = DateFromTime;
745
+ var HOURS_PER_DAY = 24;
746
+ var MINUTES_PER_HOUR = 60;
747
+ var SECONDS_PER_MINUTE = 60;
748
+ var MS_PER_SECOND = 1e3;
749
+ var MS_PER_MINUTE = MS_PER_SECOND * SECONDS_PER_MINUTE;
750
+ var MS_PER_HOUR = MS_PER_MINUTE * MINUTES_PER_HOUR;
751
+ function HourFromTime(t) {
752
+ return mod(Math.floor(t / MS_PER_HOUR), HOURS_PER_DAY);
117
753
  }
118
- if (type === "string") {
119
- value = ToString(value);
754
+ exports.HourFromTime = HourFromTime;
755
+ function MinFromTime(t) {
756
+ return mod(Math.floor(t / MS_PER_MINUTE), MINUTES_PER_HOUR);
120
757
  }
121
- if (values !== void 0 && !values.filter(function(val) {
122
- return val == value;
123
- }).length) {
124
- throw new RangeError("".concat(value, " is not within ").concat(values.join(", ")));
758
+ exports.MinFromTime = MinFromTime;
759
+ function SecFromTime(t) {
760
+ return mod(Math.floor(t / MS_PER_SECOND), SECONDS_PER_MINUTE);
125
761
  }
126
- return value;
762
+ exports.SecFromTime = SecFromTime;
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 msFromTime(t) {
785
+ return mod(t, MS_PER_SECOND);
786
+ }
787
+ exports.msFromTime = msFromTime;
127
788
  }
128
- return fallback;
129
- }
130
-
131
- // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/IsSanctionedSimpleUnitIdentifier.js
132
- var SANCTIONED_UNITS = [
133
- "angle-degree",
134
- "area-acre",
135
- "area-hectare",
136
- "concentr-percent",
137
- "digital-bit",
138
- "digital-byte",
139
- "digital-gigabit",
140
- "digital-gigabyte",
141
- "digital-kilobit",
142
- "digital-kilobyte",
143
- "digital-megabit",
144
- "digital-megabyte",
145
- "digital-petabyte",
146
- "digital-terabit",
147
- "digital-terabyte",
148
- "duration-day",
149
- "duration-hour",
150
- "duration-millisecond",
151
- "duration-minute",
152
- "duration-month",
153
- "duration-second",
154
- "duration-week",
155
- "duration-year",
156
- "length-centimeter",
157
- "length-foot",
158
- "length-inch",
159
- "length-kilometer",
160
- "length-meter",
161
- "length-mile-scandinavian",
162
- "length-mile",
163
- "length-millimeter",
164
- "length-yard",
165
- "mass-gram",
166
- "mass-kilogram",
167
- "mass-ounce",
168
- "mass-pound",
169
- "mass-stone",
170
- "temperature-celsius",
171
- "temperature-fahrenheit",
172
- "volume-fluid-ounce",
173
- "volume-gallon",
174
- "volume-liter",
175
- "volume-milliliter"
176
- ];
177
- function removeUnitNamespace(unit) {
178
- return unit.slice(unit.indexOf("-") + 1);
179
- }
180
- var SIMPLE_UNITS = SANCTIONED_UNITS.map(removeUnitNamespace);
181
- function IsSanctionedSimpleUnitIdentifier(unitIdentifier) {
182
- return SIMPLE_UNITS.indexOf(unitIdentifier) > -1;
183
- }
789
+ });
184
790
 
185
- // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/IsWellFormedCurrencyCode.js
186
- function toUpperCase(str) {
187
- return str.replace(/([a-z])/g, function(_, c) {
188
- return c.toUpperCase();
189
- });
190
- }
191
- var NOT_A_Z_REGEX = /[^A-Z]/;
192
- function IsWellFormedCurrencyCode(currency) {
193
- currency = toUpperCase(currency);
194
- if (currency.length !== 3) {
195
- return false;
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;
196
805
  }
197
- if (NOT_A_Z_REGEX.test(currency)) {
198
- return false;
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;
199
825
  }
200
- return true;
201
- }
826
+ });
202
827
 
203
- // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/IsWellFormedUnitIdentifier.js
204
- function toLowerCase(str) {
205
- return str.replace(/([A-Z])/g, function(_, c) {
206
- return c.toLowerCase();
207
- });
208
- }
209
- function IsWellFormedUnitIdentifier(unit) {
210
- unit = toLowerCase(unit);
211
- if (IsSanctionedSimpleUnitIdentifier(unit)) {
212
- return true;
828
+ // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/GetNumberOption.js
829
+ var require_GetNumberOption = __commonJS({
830
+ "bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/GetNumberOption.js": function(exports) {
831
+ "use strict";
832
+ Object.defineProperty(exports, "__esModule", { value: true });
833
+ exports.GetNumberOption = void 0;
834
+ var DefaultNumberOption_1 = require_DefaultNumberOption();
835
+ function GetNumberOption(options, property, minimum, maximum, fallback) {
836
+ var val = options[property];
837
+ return (0, DefaultNumberOption_1.DefaultNumberOption)(val, minimum, maximum, fallback);
838
+ }
839
+ exports.GetNumberOption = GetNumberOption;
213
840
  }
214
- var units = unit.split("-per-");
215
- if (units.length !== 2) {
216
- return false;
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 GetOption(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 = GetOption;
217
875
  }
218
- var numerator = units[0], denominator = units[1];
219
- if (!IsSanctionedSimpleUnitIdentifier(numerator) || !IsSanctionedSimpleUnitIdentifier(denominator)) {
220
- return false;
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;
221
894
  }
222
- return true;
223
- }
895
+ });
224
896
 
225
- // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/utils.js
226
- function getMagnitude(x) {
227
- return Math.floor(Math.log(x) * Math.LOG10E);
228
- }
229
- function repeat(s, times) {
230
- if (typeof s.repeat === "function") {
231
- return s.repeat(times);
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;
232
957
  }
233
- var arr = new Array(times);
234
- for (var i = 0; i < arr.length; i++) {
235
- arr[i] = s;
958
+ });
959
+
960
+ // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/IsValidTimeZoneName.js
961
+ var require_IsValidTimeZoneName = __commonJS({
962
+ "bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/IsValidTimeZoneName.js": function(exports) {
963
+ "use strict";
964
+ Object.defineProperty(exports, "__esModule", { value: true });
965
+ exports.IsValidTimeZoneName = void 0;
966
+ function IsValidTimeZoneName(tz, _a) {
967
+ var tzData = _a.tzData, uppercaseLinks = _a.uppercaseLinks;
968
+ var uppercasedTz = tz.toUpperCase();
969
+ var zoneNames = /* @__PURE__ */ new Set();
970
+ var linkNames = /* @__PURE__ */ new Set();
971
+ Object.keys(tzData).map(function(z) {
972
+ return z.toUpperCase();
973
+ }).forEach(function(z) {
974
+ return zoneNames.add(z);
975
+ });
976
+ Object.keys(uppercaseLinks).forEach(function(linkName) {
977
+ linkNames.add(linkName.toUpperCase());
978
+ zoneNames.add(uppercaseLinks[linkName].toUpperCase());
979
+ });
980
+ return zoneNames.has(uppercasedTz) || linkNames.has(uppercasedTz);
981
+ }
982
+ exports.IsValidTimeZoneName = IsValidTimeZoneName;
236
983
  }
237
- return arr.join("");
238
- }
239
- function defineProperty(target, name, _a) {
240
- var value = _a.value;
241
- Object.defineProperty(target, name, {
242
- configurable: true,
243
- enumerable: false,
244
- writable: true,
245
- value: value
246
- });
247
- }
248
- function invariant(condition, message, Err) {
249
- if (Err === void 0) {
250
- Err = Error;
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;
251
1009
  }
252
- if (!condition) {
253
- throw new Err(message);
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;
254
1040
  }
255
- }
1041
+ });
256
1042
 
257
- // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/NumberFormat/ComputeExponentForMagnitude.js
258
- function ComputeExponentForMagnitude(numberFormat, magnitude, _a) {
259
- var getInternalSlots2 = _a.getInternalSlots;
260
- var internalSlots = getInternalSlots2(numberFormat);
261
- var notation = internalSlots.notation, dataLocaleData = internalSlots.dataLocaleData, numberingSystem = internalSlots.numberingSystem;
262
- switch (notation) {
263
- case "standard":
264
- return 0;
265
- case "scientific":
266
- return magnitude;
267
- case "engineering":
268
- return Math.floor(magnitude / 3) * 3;
269
- default: {
270
- var compactDisplay = internalSlots.compactDisplay, style = internalSlots.style, currencyDisplay = internalSlots.currencyDisplay;
271
- var thresholdMap = void 0;
272
- if (style === "currency" && currencyDisplay !== "name") {
273
- var currency = dataLocaleData.numbers.currency[numberingSystem] || dataLocaleData.numbers.currency[dataLocaleData.numbers.nu[0]];
274
- thresholdMap = currency.short;
275
- } else {
276
- var decimal = dataLocaleData.numbers.decimal[numberingSystem] || dataLocaleData.numbers.decimal[dataLocaleData.numbers.nu[0]];
277
- thresholdMap = compactDisplay === "long" ? decimal.long : decimal.short;
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);
278
1056
  }
279
- if (!thresholdMap) {
280
- return 0;
1057
+ var arr = new Array(times);
1058
+ for (var i = 0; i < arr.length; i++) {
1059
+ arr[i] = s;
281
1060
  }
282
- var num = String(Math.pow(10, magnitude));
283
- var thresholds = Object.keys(thresholdMap);
284
- if (num < thresholds[0]) {
285
- return 0;
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));
286
1067
  }
287
- if (num > thresholds[thresholds.length - 1]) {
288
- return thresholds[thresholds.length - 1].length - 1;
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]);
289
1076
  }
290
- var i = thresholds.indexOf(num);
291
- if (i === -1) {
292
- return 0;
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];
293
1087
  }
294
- var magnitudeKey = thresholds[i];
295
- var compactPattern = thresholdMap[magnitudeKey].other;
296
- if (compactPattern === "0") {
297
- return 0;
1088
+ var slots = map.get(pl);
1089
+ if (!slots) {
1090
+ throw new TypeError("".concat(pl, " InternalSlot has not been initialized"));
298
1091
  }
299
- return magnitudeKey.length - thresholdMap[magnitudeKey].other.match(/0+/)[0].length;
1092
+ return fields.reduce(function(all, f) {
1093
+ all[f] = slots[f];
1094
+ return all;
1095
+ }, /* @__PURE__ */ Object.create(null));
300
1096
  }
301
- }
302
- }
303
-
304
- // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/NumberFormat/ToRawPrecision.js
305
- function ToRawPrecision(x, minPrecision, maxPrecision) {
306
- var p = maxPrecision;
307
- var m;
308
- var e;
309
- var xFinal;
310
- if (x === 0) {
311
- m = repeat("0", p);
312
- e = 0;
313
- xFinal = 0;
314
- } else {
315
- var xToString = x.toString();
316
- var xToStringExponentIndex = xToString.indexOf("e");
317
- var _a = xToString.split("e"), xToStringMantissa = _a[0], xToStringExponent = _a[1];
318
- var xToStringMantissaWithoutDecimalPoint = xToStringMantissa.replace(".", "");
319
- if (xToStringExponentIndex >= 0 && xToStringMantissaWithoutDecimalPoint.length <= p) {
320
- e = +xToStringExponent;
321
- m = xToStringMantissaWithoutDecimalPoint + repeat("0", p - xToStringMantissaWithoutDecimalPoint.length);
322
- xFinal = x;
323
- } else {
324
- e = getMagnitude(x);
325
- var decimalPlaceOffset = e - p + 1;
326
- var n = Math.round(adjustDecimalPlace(x, decimalPlaceOffset));
327
- if (adjustDecimalPlace(n, p - 1) >= 10) {
328
- e = e + 1;
329
- n = Math.floor(n / 10);
330
- }
331
- m = n.toString();
332
- xFinal = adjustDecimalPlace(n, p - 1 - e);
1097
+ exports.getMultiInternalSlots = getMultiInternalSlots;
1098
+ function isLiteralPart(patternPart) {
1099
+ return patternPart.type === "literal";
333
1100
  }
334
- }
335
- var int;
336
- if (e >= p - 1) {
337
- m = m + repeat("0", e - p + 1);
338
- int = e + 1;
339
- } else if (e >= 0) {
340
- m = "".concat(m.slice(0, e + 1), ".").concat(m.slice(e + 1));
341
- int = e + 1;
342
- } else {
343
- m = "0.".concat(repeat("0", -e - 1)).concat(m);
344
- int = 1;
345
- }
346
- if (m.indexOf(".") >= 0 && maxPrecision > minPrecision) {
347
- var cut = maxPrecision - minPrecision;
348
- while (cut > 0 && m[m.length - 1] === "0") {
349
- m = m.slice(0, -1);
350
- cut--;
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
+ });
351
1110
  }
352
- if (m[m.length - 1] === ".") {
353
- m = m.slice(0, -1);
1111
+ exports.defineProperty = defineProperty3;
1112
+ exports.UNICODE_EXTENSION_SEQUENCE_REGEX = /-u(?:-[0-9a-z]{2,8})+/gi;
1113
+ function invariant2(condition, message, Err) {
1114
+ if (Err === void 0) {
1115
+ Err = Error;
1116
+ }
1117
+ if (!condition) {
1118
+ throw new Err(message);
1119
+ }
354
1120
  }
1121
+ exports.invariant = invariant2;
355
1122
  }
356
- return { formattedString: m, roundedNumber: xFinal, integerDigitsCount: int };
357
- function adjustDecimalPlace(x2, magnitude) {
358
- return magnitude < 0 ? x2 * Math.pow(10, -magnitude) : x2 / Math.pow(10, magnitude);
359
- }
360
- }
361
-
362
- // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/NumberFormat/ToRawFixed.js
363
- function ToRawFixed(x, minFraction, maxFraction) {
364
- var f = maxFraction;
365
- var n = Math.round(x * Math.pow(10, f));
366
- var xFinal = n / Math.pow(10, f);
367
- var m;
368
- if (n < 1e21) {
369
- m = n.toString();
370
- } else {
371
- m = n.toString();
372
- var _a = m.split("e"), mantissa = _a[0], exponent = _a[1];
373
- m = mantissa.replace(".", "");
374
- m = m + repeat("0", Math.max(+exponent - m.length + 1, 0));
375
- }
376
- var int;
377
- if (f !== 0) {
378
- var k = m.length;
379
- if (k <= f) {
380
- var z = repeat("0", f + 1 - k);
381
- m = z + m;
382
- k = f + 1;
383
- }
384
- var a = m.slice(0, k - f);
385
- var b = m.slice(k - f);
386
- m = "".concat(a, ".").concat(b);
387
- int = a.length;
388
- } else {
389
- int = m.length;
390
- }
391
- var cut = maxFraction - minFraction;
392
- while (cut > 0 && m[m.length - 1] === "0") {
393
- m = m.slice(0, -1);
394
- cut--;
395
- }
396
- if (m[m.length - 1] === ".") {
397
- m = m.slice(0, -1);
398
- }
399
- return { formattedString: m, roundedNumber: xFinal, integerDigitsCount: int };
400
- }
1123
+ });
401
1124
 
402
- // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/NumberFormat/FormatNumericToString.js
403
- function FormatNumericToString(intlObject, x) {
404
- var isNegative = x < 0 || SameValue(x, -0);
405
- if (isNegative) {
406
- x = -x;
407
- }
408
- var result;
409
- var rourndingType = intlObject.roundingType;
410
- switch (rourndingType) {
411
- case "significantDigits":
412
- result = ToRawPrecision(x, intlObject.minimumSignificantDigits, intlObject.maximumSignificantDigits);
413
- break;
414
- case "fractionDigits":
415
- result = ToRawFixed(x, intlObject.minimumFractionDigits, intlObject.maximumFractionDigits);
416
- break;
417
- default:
418
- result = ToRawPrecision(x, 1, 2);
419
- if (result.integerDigitsCount > 1) {
420
- result = ToRawFixed(x, 0, 0);
421
- }
422
- break;
423
- }
424
- x = result.roundedNumber;
425
- var string = result.formattedString;
426
- var int = result.integerDigitsCount;
427
- var minInteger = intlObject.minimumIntegerDigits;
428
- if (int < minInteger) {
429
- var forwardZeros = repeat("0", minInteger - int);
430
- string = forwardZeros + string;
431
- }
432
- if (isNegative) {
433
- x = -x;
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;
434
1177
  }
435
- return { roundedNumber: x, formattedString: string };
436
- }
1178
+ });
437
1179
 
438
- // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/NumberFormat/ComputeExponent.js
439
- function ComputeExponent(numberFormat, x, _a) {
440
- var getInternalSlots2 = _a.getInternalSlots;
441
- if (x === 0) {
442
- return [0, 0];
443
- }
444
- if (x < 0) {
445
- x = -x;
446
- }
447
- var magnitude = getMagnitude(x);
448
- var exponent = ComputeExponentForMagnitude(numberFormat, magnitude, {
449
- getInternalSlots: getInternalSlots2
450
- });
451
- x = exponent < 0 ? x * Math.pow(10, -exponent) : x / Math.pow(10, exponent);
452
- var formatNumberResult = FormatNumericToString(getInternalSlots2(numberFormat), x);
453
- if (formatNumberResult.roundedNumber === 0) {
454
- return [exponent, magnitude];
455
- }
456
- var newMagnitude = getMagnitude(formatNumberResult.roundedNumber);
457
- if (newMagnitude === magnitude - exponent) {
458
- return [exponent, magnitude];
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;
459
1244
  }
460
- return [
461
- ComputeExponentForMagnitude(numberFormat, magnitude + 1, {
462
- getInternalSlots: getInternalSlots2
463
- }),
464
- magnitude + 1
465
- ];
466
- }
467
-
468
- // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/NumberFormat/CurrencyDigits.js
469
- function CurrencyDigits(c, _a) {
470
- var currencyDigitsData2 = _a.currencyDigitsData;
471
- return HasOwnProperty(currencyDigitsData2, c) ? currencyDigitsData2[c] : 2;
472
- }
473
-
474
- // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/NumberFormat/digit-mapping.generated.js
475
- var 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"] };
476
-
477
- // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/regex.generated.js
478
- var 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]/;
1245
+ });
479
1246
 
480
- // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/NumberFormat/format_to_parts.js
481
- var CARET_S_UNICODE_REGEX = new RegExp("^".concat(S_UNICODE_REGEX.source));
482
- var S_DOLLAR_UNICODE_REGEX = new RegExp("".concat(S_UNICODE_REGEX.source, "$"));
483
- var CLDR_NUMBER_PATTERN = /[#0](?:[\.,][#0]+)*/g;
484
- function formatToParts(numberResult, data, pl, options) {
485
- var sign = numberResult.sign, exponent = numberResult.exponent, magnitude = numberResult.magnitude;
486
- var notation = options.notation, style = options.style, numberingSystem = options.numberingSystem;
487
- var defaultNumberingSystem = data.numbers.nu[0];
488
- var compactNumberPattern = null;
489
- if (notation === "compact" && magnitude) {
490
- compactNumberPattern = getCompactDisplayPattern(numberResult, pl, data, style, options.compactDisplay, options.currencyDisplay, numberingSystem);
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;
491
1293
  }
492
- var nonNameCurrencyPart;
493
- if (style === "currency" && options.currencyDisplay !== "name") {
494
- var byCurrencyDisplay = data.currencies[options.currency];
495
- if (byCurrencyDisplay) {
496
- switch (options.currencyDisplay) {
497
- case "code":
498
- nonNameCurrencyPart = options.currency;
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);
499
1316
  break;
500
- case "symbol":
501
- nonNameCurrencyPart = byCurrencyDisplay.symbol;
1317
+ case "fractionDigits":
1318
+ result = (0, ToRawFixed_1.ToRawFixed)(x, intlObject.minimumFractionDigits, intlObject.maximumFractionDigits);
502
1319
  break;
503
1320
  default:
504
- nonNameCurrencyPart = byCurrencyDisplay.narrow;
1321
+ result = (0, ToRawPrecision_1.ToRawPrecision)(x, 1, 2);
1322
+ if (result.integerDigitsCount > 1) {
1323
+ result = (0, ToRawFixed_1.ToRawFixed)(x, 0, 0);
1324
+ }
505
1325
  break;
506
1326
  }
507
- } else {
508
- nonNameCurrencyPart = options.currency;
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 };
509
1339
  }
1340
+ exports.FormatNumericToString = FormatNumericToString;
510
1341
  }
511
- var numberPattern;
512
- if (!compactNumberPattern) {
513
- if (style === "decimal" || style === "unit" || style === "currency" && options.currencyDisplay === "name") {
514
- var decimalData = data.numbers.decimal[numberingSystem] || data.numbers.decimal[defaultNumberingSystem];
515
- numberPattern = getPatternForSign(decimalData.standard, sign);
516
- } else if (style === "currency") {
517
- var currencyData = data.numbers.currency[numberingSystem] || data.numbers.currency[defaultNumberingSystem];
518
- numberPattern = getPatternForSign(currencyData[options.currencySign], sign);
519
- } else {
520
- var percentPattern = data.numbers.percent[numberingSystem] || data.numbers.percent[defaultNumberingSystem];
521
- numberPattern = getPatternForSign(percentPattern, sign);
522
- }
523
- } else {
524
- numberPattern = compactNumberPattern;
525
- }
526
- var decimalNumberPattern = CLDR_NUMBER_PATTERN.exec(numberPattern)[0];
527
- numberPattern = numberPattern.replace(CLDR_NUMBER_PATTERN, "{0}").replace(/'(.)'/g, "$1");
528
- if (style === "currency" && options.currencyDisplay !== "name") {
529
- var currencyData = data.numbers.currency[numberingSystem] || data.numbers.currency[defaultNumberingSystem];
530
- var afterCurrency = currencyData.currencySpacing.afterInsertBetween;
531
- if (afterCurrency && !S_DOLLAR_UNICODE_REGEX.test(nonNameCurrencyPart)) {
532
- numberPattern = numberPattern.replace("\xA4{0}", "\xA4".concat(afterCurrency, "{0}"));
533
- }
534
- var beforeCurrency = currencyData.currencySpacing.beforeInsertBetween;
535
- if (beforeCurrency && !CARET_S_UNICODE_REGEX.test(nonNameCurrencyPart)) {
536
- numberPattern = numberPattern.replace("{0}\xA4", "{0}".concat(beforeCurrency, "\xA4"));
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
+ ];
537
1380
  }
1381
+ exports.ComputeExponent = ComputeExponent;
538
1382
  }
539
- var numberPatternParts = numberPattern.split(/({c:[^}]+}|\{0\}|[¤%\-\+])/g);
540
- var numberParts = [];
541
- var symbols = data.numbers.symbols[numberingSystem] || data.numbers.symbols[defaultNumberingSystem];
542
- for (var _i = 0, numberPatternParts_1 = numberPatternParts; _i < numberPatternParts_1.length; _i++) {
543
- var part = numberPatternParts_1[_i];
544
- if (!part) {
545
- continue;
546
- }
547
- switch (part) {
548
- case "{0}": {
549
- numberParts.push.apply(numberParts, paritionNumberIntoParts(symbols, numberResult, notation, exponent, numberingSystem, !compactNumberPattern && options.useGrouping, decimalNumberPattern));
550
- break;
551
- }
552
- case "-":
553
- numberParts.push({ type: "minusSign", value: symbols.minusSign });
554
- break;
555
- case "+":
556
- numberParts.push({ type: "plusSign", value: symbols.plusSign });
557
- break;
558
- case "%":
559
- numberParts.push({ type: "percentSign", value: symbols.percentSign });
560
- break;
561
- case "\xA4":
562
- numberParts.push({ type: "currency", value: nonNameCurrencyPart });
563
- break;
564
- default:
565
- if (/^\{c:/.test(part)) {
566
- numberParts.push({
567
- type: "compact",
568
- value: part.substring(3, part.length - 1)
569
- });
570
- } else {
571
- numberParts.push({ type: "literal", value: part });
572
- }
573
- break;
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 currencyDigitsData2 = _a.currencyDigitsData;
1394
+ return (0, _262_1.HasOwnProperty)(currencyDigitsData2, c) ? currencyDigitsData2[c] : 2;
574
1395
  }
1396
+ exports.CurrencyDigits = CurrencyDigits;
575
1397
  }
576
- switch (style) {
577
- case "currency": {
578
- if (options.currencyDisplay === "name") {
579
- var unitPattern = (data.numbers.currency[numberingSystem] || data.numbers.currency[defaultNumberingSystem]).unitPattern;
580
- var unitName = void 0;
581
- var currencyNameData = data.currencies[options.currency];
582
- if (currencyNameData) {
583
- unitName = selectPlural(pl, numberResult.roundedNumber * Math.pow(10, exponent), currencyNameData.displayName);
584
- } else {
585
- unitName = options.currency;
586
- }
587
- var unitPatternParts = unitPattern.split(/(\{[01]\})/g);
588
- var result = [];
589
- for (var _a = 0, unitPatternParts_1 = unitPatternParts; _a < unitPatternParts_1.length; _a++) {
590
- var part = unitPatternParts_1[_a];
591
- switch (part) {
592
- case "{0}":
593
- result.push.apply(result, numberParts);
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;
594
1446
  break;
595
- case "{1}":
596
- result.push({ type: "currency", value: unitName });
1447
+ case "symbol":
1448
+ nonNameCurrencyPart = byCurrencyDisplay.symbol;
597
1449
  break;
598
1450
  default:
599
- if (part) {
600
- result.push({ type: "literal", value: part });
601
- }
1451
+ nonNameCurrencyPart = byCurrencyDisplay.narrow;
602
1452
  break;
603
1453
  }
1454
+ } else {
1455
+ nonNameCurrencyPart = options.currency;
604
1456
  }
605
- return result;
606
- } else {
607
- return numberParts;
608
1457
  }
609
- }
610
- case "unit": {
611
- var unit = options.unit, unitDisplay = options.unitDisplay;
612
- var unitData = data.units.simple[unit];
613
- var unitPattern = void 0;
614
- if (unitData) {
615
- unitPattern = selectPlural(pl, numberResult.roundedNumber * Math.pow(10, exponent), data.units.simple[unit][unitDisplay]);
616
- } else {
617
- var _b = unit.split("-per-"), numeratorUnit = _b[0], denominatorUnit = _b[1];
618
- unitData = data.units.simple[numeratorUnit];
619
- var numeratorUnitPattern = selectPlural(pl, numberResult.roundedNumber * Math.pow(10, exponent), data.units.simple[numeratorUnit][unitDisplay]);
620
- var perUnitPattern = data.units.simple[denominatorUnit].perUnit[unitDisplay];
621
- if (perUnitPattern) {
622
- unitPattern = perUnitPattern.replace("{0}", numeratorUnitPattern);
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);
623
1466
  } else {
624
- var perPattern = data.units.compound.per[unitDisplay];
625
- var denominatorPattern = selectPlural(pl, 1, data.units.simple[denominatorUnit][unitDisplay]);
626
- unitPattern = unitPattern = perPattern.replace("{0}", numeratorUnitPattern).replace("{1}", denominatorPattern.replace("{0}", ""));
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;
627
1593
  }
1594
+ default:
1595
+ return numberParts;
628
1596
  }
1597
+ }
1598
+ exports.default = formatToParts2;
1599
+ function paritionNumberIntoParts(symbols, numberResult, notation, exponent, numberingSystem, useGrouping, decimalNumberPattern) {
629
1600
  var result = [];
630
- for (var _c = 0, _d = unitPattern.split(/(\s*\{0\}\s*)/); _c < _d.length; _c++) {
631
- var part = _d[_c];
632
- var interpolateMatch = /^(\s*)\{0\}(\s*)$/.exec(part);
633
- if (interpolateMatch) {
634
- if (interpolateMatch[1]) {
635
- result.push({ type: "literal", value: interpolateMatch[1] });
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));
636
1640
  }
637
- result.push.apply(result, numberParts);
638
- if (interpolateMatch[2]) {
639
- result.push({ type: "literal", value: interpolateMatch[2] });
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 });
640
1650
  }
641
- } else if (part) {
642
- result.push({ type: "unit", value: part });
643
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
+ });
644
1669
  }
645
1670
  return result;
646
1671
  }
647
- default:
648
- return numberParts;
649
- }
650
- }
651
- function paritionNumberIntoParts(symbols, numberResult, notation, exponent, numberingSystem, useGrouping, decimalNumberPattern) {
652
- var result = [];
653
- var n = numberResult.formattedString, x = numberResult.roundedNumber;
654
- if (isNaN(x)) {
655
- return [{ type: "nan", value: n }];
656
- } else if (!isFinite(x)) {
657
- return [{ type: "infinity", value: n }];
658
- }
659
- var digitReplacementTable = digitMapping[numberingSystem];
660
- if (digitReplacementTable) {
661
- n = n.replace(/\d/g, function(digit) {
662
- return digitReplacementTable[+digit] || digit;
663
- });
664
- }
665
- var decimalSepIndex = n.indexOf(".");
666
- var integer;
667
- var fraction;
668
- if (decimalSepIndex > 0) {
669
- integer = n.slice(0, decimalSepIndex);
670
- fraction = n.slice(decimalSepIndex + 1);
671
- } else {
672
- integer = n;
673
- }
674
- if (useGrouping && (notation !== "compact" || x >= 1e4)) {
675
- var groupSepSymbol = symbols.group;
676
- var groups = [];
677
- var integerNumberPattern = decimalNumberPattern.split(".")[0];
678
- var patternGroups = integerNumberPattern.split(",");
679
- var primaryGroupingSize = 3;
680
- var secondaryGroupingSize = 3;
681
- if (patternGroups.length > 1) {
682
- primaryGroupingSize = patternGroups[patternGroups.length - 1].length;
683
- }
684
- if (patternGroups.length > 2) {
685
- secondaryGroupingSize = patternGroups[patternGroups.length - 2].length;
686
- }
687
- var i = integer.length - primaryGroupingSize;
688
- if (i > 0) {
689
- groups.push(integer.slice(i, i + primaryGroupingSize));
690
- for (i -= secondaryGroupingSize; i > 0; i -= secondaryGroupingSize) {
691
- groups.push(integer.slice(i, i + secondaryGroupingSize));
692
- }
693
- groups.push(integer.slice(0, i + secondaryGroupingSize));
694
- } else {
695
- groups.push(integer);
696
- }
697
- while (groups.length > 0) {
698
- var integerGroup = groups.pop();
699
- result.push({ type: "integer", value: integerGroup });
700
- if (groups.length > 0) {
701
- result.push({ type: "group", value: groupSepSymbol });
702
- }
703
- }
704
- } else {
705
- result.push({ type: "integer", value: integer });
706
- }
707
- if (fraction !== void 0) {
708
- result.push({ type: "decimal", value: symbols.decimal }, { type: "fraction", value: fraction });
709
- }
710
- if ((notation === "scientific" || notation === "engineering") && isFinite(x)) {
711
- result.push({ type: "exponentSeparator", value: symbols.exponential });
712
- if (exponent < 0) {
713
- result.push({ type: "exponentMinusSign", value: symbols.minusSign });
714
- exponent = -exponent;
715
- }
716
- var exponentResult = ToRawFixed(exponent, 0, 0);
717
- result.push({
718
- type: "exponentInteger",
719
- value: exponentResult.formattedString
720
- });
721
- }
722
- return result;
723
- }
724
- function getPatternForSign(pattern, sign) {
725
- if (pattern.indexOf(";") < 0) {
726
- pattern = "".concat(pattern, ";-").concat(pattern);
727
- }
728
- var _a = pattern.split(";"), zeroPattern = _a[0], negativePattern = _a[1];
729
- switch (sign) {
730
- case 0:
731
- return zeroPattern;
732
- case -1:
733
- return negativePattern;
734
- default:
735
- return negativePattern.indexOf("-") >= 0 ? negativePattern.replace(/-/g, "+") : "+".concat(zeroPattern);
736
- }
737
- }
738
- function getCompactDisplayPattern(numberResult, pl, data, style, compactDisplay, currencyDisplay, numberingSystem) {
739
- var _a;
740
- var roundedNumber = numberResult.roundedNumber, sign = numberResult.sign, magnitude = numberResult.magnitude;
741
- var magnitudeKey = String(Math.pow(10, magnitude));
742
- var defaultNumberingSystem = data.numbers.nu[0];
743
- var pattern;
744
- if (style === "currency" && currencyDisplay !== "name") {
745
- var byNumberingSystem = data.numbers.currency;
746
- var currencyData = byNumberingSystem[numberingSystem] || byNumberingSystem[defaultNumberingSystem];
747
- var compactPluralRules = (_a = currencyData.short) === null || _a === void 0 ? void 0 : _a[magnitudeKey];
748
- if (!compactPluralRules) {
749
- return null;
750
- }
751
- pattern = selectPlural(pl, roundedNumber, compactPluralRules);
752
- } else {
753
- var byNumberingSystem = data.numbers.decimal;
754
- var byCompactDisplay = byNumberingSystem[numberingSystem] || byNumberingSystem[defaultNumberingSystem];
755
- var compactPlaralRule = byCompactDisplay[compactDisplay][magnitudeKey];
756
- if (!compactPlaralRule) {
757
- return null;
758
- }
759
- pattern = selectPlural(pl, roundedNumber, compactPlaralRule);
760
- }
761
- if (pattern === "0") {
762
- return null;
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
+ }
763
1718
  }
764
- pattern = getPatternForSign(pattern, sign).replace(/([^\s;\-\+\d¤]+)/g, "{c:$1}").replace(/0+/, "0");
765
- return pattern;
766
- }
767
- function selectPlural(pl, x, rules) {
768
- return rules[pl.select(x)] || rules.other;
769
- }
1719
+ });
770
1720
 
771
- // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/NumberFormat/PartitionNumberPattern.js
772
- function PartitionNumberPattern(numberFormat, x, _a) {
773
- var _b;
774
- var getInternalSlots2 = _a.getInternalSlots;
775
- var internalSlots = getInternalSlots2(numberFormat);
776
- var pl = internalSlots.pl, dataLocaleData = internalSlots.dataLocaleData, numberingSystem = internalSlots.numberingSystem;
777
- var symbols = dataLocaleData.numbers.symbols[numberingSystem] || dataLocaleData.numbers.symbols[dataLocaleData.numbers.nu[0]];
778
- var magnitude = 0;
779
- var exponent = 0;
780
- var n;
781
- if (isNaN(x)) {
782
- n = symbols.nan;
783
- } else if (!isFinite(x)) {
784
- n = symbols.infinity;
785
- } else {
786
- if (internalSlots.style === "percent") {
787
- x *= 100;
788
- }
789
- ;
790
- _b = ComputeExponent(numberFormat, x, {
791
- getInternalSlots: getInternalSlots2
792
- }), exponent = _b[0], magnitude = _b[1];
793
- x = exponent < 0 ? x * Math.pow(10, -exponent) : x / Math.pow(10, exponent);
794
- var formatNumberResult = FormatNumericToString(internalSlots, x);
795
- n = formatNumberResult.formattedString;
796
- x = formatNumberResult.roundedNumber;
797
- }
798
- var sign;
799
- var signDisplay = internalSlots.signDisplay;
800
- switch (signDisplay) {
801
- case "never":
802
- sign = 0;
803
- break;
804
- case "auto":
805
- if (SameValue(x, 0) || x > 0 || isNaN(x)) {
806
- sign = 0;
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;
807
1745
  } else {
808
- sign = -1;
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;
809
1757
  }
810
- break;
811
- case "always":
812
- if (SameValue(x, 0) || x > 0 || isNaN(x)) {
813
- sign = 1;
814
- } else {
815
- sign = -1;
816
- }
817
- break;
818
- default:
819
- if (x === 0 || isNaN(x)) {
820
- sign = 0;
821
- } else if (x > 0) {
822
- sign = 1;
823
- } else {
824
- sign = -1;
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
+ }
825
1786
  }
1787
+ return (0, format_to_parts_1.default)({ roundedNumber: x, formattedString: n, exponent: exponent, magnitude: magnitude, sign: sign }, internalSlots.dataLocaleData, pl, internalSlots);
1788
+ }
1789
+ exports.PartitionNumberPattern = PartitionNumberPattern;
826
1790
  }
827
- return formatToParts({ roundedNumber: x, formattedString: n, exponent: exponent, magnitude: magnitude, sign: sign }, internalSlots.dataLocaleData, pl, internalSlots);
828
- }
1791
+ });
829
1792
 
830
- // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/NumberFormat/FormatNumericToParts.js
831
- function FormatNumericToParts(nf, x, implDetails) {
832
- var parts = PartitionNumberPattern(nf, x, implDetails);
833
- var result = ArrayCreate(0);
834
- for (var _i = 0, parts_1 = parts; _i < parts_1.length; _i++) {
835
- var part = parts_1[_i];
836
- result.push({
837
- type: part.type,
838
- value: part.value
839
- });
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 FormatNumericToParts2(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 = FormatNumericToParts2;
840
1814
  }
841
- return result;
842
- }
843
-
844
- // bazel-out/darwin-fastbuild/bin/packages/intl-localematcher/lib/abstract/CanonicalizeLocaleList.js
845
- function CanonicalizeLocaleList2(locales) {
846
- return Intl.getCanonicalLocales(locales);
847
- }
1815
+ });
848
1816
 
849
- // bazel-out/darwin-fastbuild/bin/packages/intl-localematcher/lib/abstract/utils.js
850
- var UNICODE_EXTENSION_SEQUENCE_REGEX = /-u(?:-[0-9a-z]{2,8})+/gi;
851
- function invariant2(condition, message, Err) {
852
- if (Err === void 0) {
853
- Err = Error;
854
- }
855
- if (!condition) {
856
- throw new Err(message);
1817
+ // bazel-out/darwin-fastbuild/bin/packages/intl-localematcher/abstract/CanonicalizeLocaleList.js
1818
+ var require_CanonicalizeLocaleList2 = __commonJS({
1819
+ "bazel-out/darwin-fastbuild/bin/packages/intl-localematcher/abstract/CanonicalizeLocaleList.js": function(exports) {
1820
+ "use strict";
1821
+ Object.defineProperty(exports, "__esModule", { value: true });
1822
+ exports.CanonicalizeLocaleList = void 0;
1823
+ function CanonicalizeLocaleList2(locales) {
1824
+ return Intl.getCanonicalLocales(locales);
1825
+ }
1826
+ exports.CanonicalizeLocaleList = CanonicalizeLocaleList2;
857
1827
  }
858
- }
1828
+ });
859
1829
 
860
- // bazel-out/darwin-fastbuild/bin/packages/intl-localematcher/lib/abstract/BestAvailableLocale.js
861
- function BestAvailableLocale(availableLocales, locale) {
862
- var candidate = locale;
863
- while (true) {
864
- if (availableLocales.has(candidate)) {
865
- return candidate;
866
- }
867
- var pos = candidate.lastIndexOf("-");
868
- if (!~pos) {
869
- return void 0;
1830
+ // bazel-out/darwin-fastbuild/bin/packages/intl-localematcher/abstract/utils.js
1831
+ var require_utils2 = __commonJS({
1832
+ "bazel-out/darwin-fastbuild/bin/packages/intl-localematcher/abstract/utils.js": function(exports) {
1833
+ "use strict";
1834
+ Object.defineProperty(exports, "__esModule", { value: true });
1835
+ exports.invariant = exports.UNICODE_EXTENSION_SEQUENCE_REGEX = void 0;
1836
+ exports.UNICODE_EXTENSION_SEQUENCE_REGEX = /-u(?:-[0-9a-z]{2,8})+/gi;
1837
+ function invariant2(condition, message, Err) {
1838
+ if (Err === void 0) {
1839
+ Err = Error;
1840
+ }
1841
+ if (!condition) {
1842
+ throw new Err(message);
1843
+ }
870
1844
  }
871
- if (pos >= 2 && candidate[pos - 2] === "-") {
872
- pos -= 2;
1845
+ exports.invariant = invariant2;
1846
+ }
1847
+ });
1848
+
1849
+ // bazel-out/darwin-fastbuild/bin/packages/intl-localematcher/abstract/BestAvailableLocale.js
1850
+ var require_BestAvailableLocale = __commonJS({
1851
+ "bazel-out/darwin-fastbuild/bin/packages/intl-localematcher/abstract/BestAvailableLocale.js": function(exports) {
1852
+ "use strict";
1853
+ Object.defineProperty(exports, "__esModule", { value: true });
1854
+ exports.BestAvailableLocale = void 0;
1855
+ function BestAvailableLocale(availableLocales, locale) {
1856
+ var candidate = locale;
1857
+ while (true) {
1858
+ if (availableLocales.has(candidate)) {
1859
+ return candidate;
1860
+ }
1861
+ var pos = candidate.lastIndexOf("-");
1862
+ if (!~pos) {
1863
+ return void 0;
1864
+ }
1865
+ if (pos >= 2 && candidate[pos - 2] === "-") {
1866
+ pos -= 2;
1867
+ }
1868
+ candidate = candidate.slice(0, pos);
1869
+ }
873
1870
  }
874
- candidate = candidate.slice(0, pos);
1871
+ exports.BestAvailableLocale = BestAvailableLocale;
875
1872
  }
876
- }
1873
+ });
877
1874
 
878
- // bazel-out/darwin-fastbuild/bin/packages/intl-localematcher/lib/abstract/LookupMatcher.js
879
- function LookupMatcher(availableLocales, requestedLocales, getDefaultLocale) {
880
- var result = { locale: "" };
881
- for (var _i = 0, requestedLocales_1 = requestedLocales; _i < requestedLocales_1.length; _i++) {
882
- var locale = requestedLocales_1[_i];
883
- var noExtensionLocale = locale.replace(UNICODE_EXTENSION_SEQUENCE_REGEX, "");
884
- var availableLocale = BestAvailableLocale(availableLocales, noExtensionLocale);
885
- if (availableLocale) {
886
- result.locale = availableLocale;
887
- if (locale !== noExtensionLocale) {
888
- result.extension = locale.slice(noExtensionLocale.length + 1, locale.length);
1875
+ // bazel-out/darwin-fastbuild/bin/packages/intl-localematcher/abstract/LookupMatcher.js
1876
+ var require_LookupMatcher = __commonJS({
1877
+ "bazel-out/darwin-fastbuild/bin/packages/intl-localematcher/abstract/LookupMatcher.js": function(exports) {
1878
+ "use strict";
1879
+ Object.defineProperty(exports, "__esModule", { value: true });
1880
+ exports.LookupMatcher = void 0;
1881
+ var utils_1 = require_utils2();
1882
+ var BestAvailableLocale_1 = require_BestAvailableLocale();
1883
+ function LookupMatcher(availableLocales, requestedLocales, getDefaultLocale) {
1884
+ var result = { locale: "" };
1885
+ for (var _i = 0, requestedLocales_1 = requestedLocales; _i < requestedLocales_1.length; _i++) {
1886
+ var locale = requestedLocales_1[_i];
1887
+ var noExtensionLocale = locale.replace(utils_1.UNICODE_EXTENSION_SEQUENCE_REGEX, "");
1888
+ var availableLocale = (0, BestAvailableLocale_1.BestAvailableLocale)(availableLocales, noExtensionLocale);
1889
+ if (availableLocale) {
1890
+ result.locale = availableLocale;
1891
+ if (locale !== noExtensionLocale) {
1892
+ result.extension = locale.slice(noExtensionLocale.length + 1, locale.length);
1893
+ }
1894
+ return result;
1895
+ }
889
1896
  }
1897
+ result.locale = getDefaultLocale();
890
1898
  return result;
891
1899
  }
1900
+ exports.LookupMatcher = LookupMatcher;
892
1901
  }
893
- result.locale = getDefaultLocale();
894
- return result;
895
- }
1902
+ });
896
1903
 
897
- // bazel-out/darwin-fastbuild/bin/packages/intl-localematcher/lib/abstract/BestFitMatcher.js
898
- function BestFitMatcher(availableLocales, requestedLocales, getDefaultLocale) {
899
- var minimizedAvailableLocaleMap = {};
900
- var availableLocaleMap = {};
901
- var canonicalizedLocaleMap = {};
902
- var minimizedAvailableLocales = /* @__PURE__ */ new Set();
903
- availableLocales.forEach(function(locale2) {
904
- var minimizedLocale = new Intl.Locale(locale2).minimize().toString();
905
- var canonicalizedLocale = Intl.getCanonicalLocales(locale2)[0] || locale2;
906
- minimizedAvailableLocaleMap[minimizedLocale] = locale2;
907
- availableLocaleMap[locale2] = locale2;
908
- canonicalizedLocaleMap[canonicalizedLocale] = locale2;
909
- minimizedAvailableLocales.add(minimizedLocale);
910
- minimizedAvailableLocales.add(locale2);
911
- minimizedAvailableLocales.add(canonicalizedLocale);
912
- });
913
- var foundLocale;
914
- for (var _i = 0, requestedLocales_1 = requestedLocales; _i < requestedLocales_1.length; _i++) {
915
- var l = requestedLocales_1[_i];
916
- if (foundLocale) {
917
- break;
918
- }
919
- var noExtensionLocale = l.replace(UNICODE_EXTENSION_SEQUENCE_REGEX, "");
920
- if (availableLocales.has(noExtensionLocale)) {
921
- foundLocale = noExtensionLocale;
922
- break;
923
- }
924
- if (minimizedAvailableLocales.has(noExtensionLocale)) {
925
- foundLocale = noExtensionLocale;
926
- break;
927
- }
928
- var locale = new Intl.Locale(noExtensionLocale);
929
- var maximizedRequestedLocale = locale.maximize().toString();
930
- var minimizedRequestedLocale = locale.minimize().toString();
931
- if (minimizedAvailableLocales.has(minimizedRequestedLocale)) {
932
- foundLocale = minimizedRequestedLocale;
933
- break;
934
- }
935
- foundLocale = BestAvailableLocale(minimizedAvailableLocales, maximizedRequestedLocale);
936
- }
937
- if (!foundLocale) {
938
- return { locale: getDefaultLocale() };
1904
+ // bazel-out/darwin-fastbuild/bin/packages/intl-localematcher/abstract/BestFitMatcher.js
1905
+ var require_BestFitMatcher = __commonJS({
1906
+ "bazel-out/darwin-fastbuild/bin/packages/intl-localematcher/abstract/BestFitMatcher.js": function(exports) {
1907
+ "use strict";
1908
+ Object.defineProperty(exports, "__esModule", { value: true });
1909
+ exports.BestFitMatcher = void 0;
1910
+ var BestAvailableLocale_1 = require_BestAvailableLocale();
1911
+ var utils_1 = require_utils2();
1912
+ function BestFitMatcher(availableLocales, requestedLocales, getDefaultLocale) {
1913
+ var minimizedAvailableLocaleMap = {};
1914
+ var availableLocaleMap = {};
1915
+ var canonicalizedLocaleMap = {};
1916
+ var minimizedAvailableLocales = /* @__PURE__ */ new Set();
1917
+ availableLocales.forEach(function(locale2) {
1918
+ var minimizedLocale = new Intl.Locale(locale2).minimize().toString();
1919
+ var canonicalizedLocale = Intl.getCanonicalLocales(locale2)[0] || locale2;
1920
+ minimizedAvailableLocaleMap[minimizedLocale] = locale2;
1921
+ availableLocaleMap[locale2] = locale2;
1922
+ canonicalizedLocaleMap[canonicalizedLocale] = locale2;
1923
+ minimizedAvailableLocales.add(minimizedLocale);
1924
+ minimizedAvailableLocales.add(locale2);
1925
+ minimizedAvailableLocales.add(canonicalizedLocale);
1926
+ });
1927
+ var foundLocale;
1928
+ for (var _i = 0, requestedLocales_1 = requestedLocales; _i < requestedLocales_1.length; _i++) {
1929
+ var l = requestedLocales_1[_i];
1930
+ if (foundLocale) {
1931
+ break;
1932
+ }
1933
+ var noExtensionLocale = l.replace(utils_1.UNICODE_EXTENSION_SEQUENCE_REGEX, "");
1934
+ if (availableLocales.has(noExtensionLocale)) {
1935
+ foundLocale = noExtensionLocale;
1936
+ break;
1937
+ }
1938
+ if (minimizedAvailableLocales.has(noExtensionLocale)) {
1939
+ foundLocale = noExtensionLocale;
1940
+ break;
1941
+ }
1942
+ var locale = new Intl.Locale(noExtensionLocale);
1943
+ var maximizedRequestedLocale = locale.maximize().toString();
1944
+ var minimizedRequestedLocale = locale.minimize().toString();
1945
+ if (minimizedAvailableLocales.has(minimizedRequestedLocale)) {
1946
+ foundLocale = minimizedRequestedLocale;
1947
+ break;
1948
+ }
1949
+ foundLocale = (0, BestAvailableLocale_1.BestAvailableLocale)(minimizedAvailableLocales, maximizedRequestedLocale);
1950
+ }
1951
+ if (!foundLocale) {
1952
+ return { locale: getDefaultLocale() };
1953
+ }
1954
+ return {
1955
+ locale: availableLocaleMap[foundLocale] || canonicalizedLocaleMap[foundLocale] || minimizedAvailableLocaleMap[foundLocale] || foundLocale
1956
+ };
1957
+ }
1958
+ exports.BestFitMatcher = BestFitMatcher;
939
1959
  }
940
- return {
941
- locale: availableLocaleMap[foundLocale] || canonicalizedLocaleMap[foundLocale] || minimizedAvailableLocaleMap[foundLocale] || foundLocale
942
- };
943
- }
1960
+ });
944
1961
 
945
- // bazel-out/darwin-fastbuild/bin/packages/intl-localematcher/lib/abstract/UnicodeExtensionValue.js
946
- function UnicodeExtensionValue(extension, key) {
947
- invariant2(key.length === 2, "key must have 2 elements");
948
- var size = extension.length;
949
- var searchValue = "-".concat(key, "-");
950
- var pos = extension.indexOf(searchValue);
951
- if (pos !== -1) {
952
- var start = pos + 4;
953
- var end = start;
954
- var k = start;
955
- var done = false;
956
- while (!done) {
957
- var e = extension.indexOf("-", k);
958
- var len = void 0;
959
- if (e === -1) {
960
- len = size - k;
961
- } else {
962
- len = e - k;
1962
+ // bazel-out/darwin-fastbuild/bin/packages/intl-localematcher/abstract/UnicodeExtensionValue.js
1963
+ var require_UnicodeExtensionValue = __commonJS({
1964
+ "bazel-out/darwin-fastbuild/bin/packages/intl-localematcher/abstract/UnicodeExtensionValue.js": function(exports) {
1965
+ "use strict";
1966
+ Object.defineProperty(exports, "__esModule", { value: true });
1967
+ exports.UnicodeExtensionValue = void 0;
1968
+ var utils_1 = require_utils2();
1969
+ function UnicodeExtensionValue(extension, key) {
1970
+ (0, utils_1.invariant)(key.length === 2, "key must have 2 elements");
1971
+ var size = extension.length;
1972
+ var searchValue = "-".concat(key, "-");
1973
+ var pos = extension.indexOf(searchValue);
1974
+ if (pos !== -1) {
1975
+ var start = pos + 4;
1976
+ var end = start;
1977
+ var k = start;
1978
+ var done = false;
1979
+ while (!done) {
1980
+ var e = extension.indexOf("-", k);
1981
+ var len = void 0;
1982
+ if (e === -1) {
1983
+ len = size - k;
1984
+ } else {
1985
+ len = e - k;
1986
+ }
1987
+ if (len === 2) {
1988
+ done = true;
1989
+ } else if (e === -1) {
1990
+ end = size;
1991
+ done = true;
1992
+ } else {
1993
+ end = e;
1994
+ k = e + 1;
1995
+ }
1996
+ }
1997
+ return extension.slice(start, end);
963
1998
  }
964
- if (len === 2) {
965
- done = true;
966
- } else if (e === -1) {
967
- end = size;
968
- done = true;
969
- } else {
970
- end = e;
971
- k = e + 1;
1999
+ searchValue = "-".concat(key);
2000
+ pos = extension.indexOf(searchValue);
2001
+ if (pos !== -1 && pos + 3 === size) {
2002
+ return "";
972
2003
  }
2004
+ return void 0;
973
2005
  }
974
- return extension.slice(start, end);
975
- }
976
- searchValue = "-".concat(key);
977
- pos = extension.indexOf(searchValue);
978
- if (pos !== -1 && pos + 3 === size) {
979
- return "";
2006
+ exports.UnicodeExtensionValue = UnicodeExtensionValue;
980
2007
  }
981
- return void 0;
982
- }
2008
+ });
983
2009
 
984
- // bazel-out/darwin-fastbuild/bin/packages/intl-localematcher/lib/abstract/ResolveLocale.js
985
- function ResolveLocale(availableLocales, requestedLocales, options, relevantExtensionKeys, localeData, getDefaultLocale) {
986
- var matcher = options.localeMatcher;
987
- var r;
988
- if (matcher === "lookup") {
989
- r = LookupMatcher(availableLocales, requestedLocales, getDefaultLocale);
990
- } else {
991
- r = BestFitMatcher(availableLocales, requestedLocales, getDefaultLocale);
992
- }
993
- var foundLocale = r.locale;
994
- var result = { locale: "", dataLocale: foundLocale };
995
- var supportedExtension = "-u";
996
- for (var _i = 0, relevantExtensionKeys_1 = relevantExtensionKeys; _i < relevantExtensionKeys_1.length; _i++) {
997
- var key = relevantExtensionKeys_1[_i];
998
- invariant2(foundLocale in localeData, "Missing locale data for ".concat(foundLocale));
999
- var foundLocaleData = localeData[foundLocale];
1000
- invariant2(typeof foundLocaleData === "object" && foundLocaleData !== null, "locale data ".concat(key, " must be an object"));
1001
- var keyLocaleData = foundLocaleData[key];
1002
- invariant2(Array.isArray(keyLocaleData), "keyLocaleData for ".concat(key, " must be an array"));
1003
- var value = keyLocaleData[0];
1004
- invariant2(typeof value === "string" || value === null, "value must be string or null but got ".concat(typeof value, " in key ").concat(key));
1005
- var supportedExtensionAddition = "";
1006
- if (r.extension) {
1007
- var requestedValue = UnicodeExtensionValue(r.extension, key);
1008
- if (requestedValue !== void 0) {
1009
- if (requestedValue !== "") {
1010
- if (~keyLocaleData.indexOf(requestedValue)) {
1011
- value = requestedValue;
1012
- supportedExtensionAddition = "-".concat(key, "-").concat(value);
2010
+ // bazel-out/darwin-fastbuild/bin/packages/intl-localematcher/abstract/ResolveLocale.js
2011
+ var require_ResolveLocale = __commonJS({
2012
+ "bazel-out/darwin-fastbuild/bin/packages/intl-localematcher/abstract/ResolveLocale.js": function(exports) {
2013
+ "use strict";
2014
+ Object.defineProperty(exports, "__esModule", { value: true });
2015
+ exports.ResolveLocale = void 0;
2016
+ var LookupMatcher_1 = require_LookupMatcher();
2017
+ var BestFitMatcher_1 = require_BestFitMatcher();
2018
+ var utils_1 = require_utils2();
2019
+ var UnicodeExtensionValue_1 = require_UnicodeExtensionValue();
2020
+ function ResolveLocale(availableLocales, requestedLocales, options, relevantExtensionKeys, localeData, getDefaultLocale) {
2021
+ var matcher = options.localeMatcher;
2022
+ var r;
2023
+ if (matcher === "lookup") {
2024
+ r = (0, LookupMatcher_1.LookupMatcher)(availableLocales, requestedLocales, getDefaultLocale);
2025
+ } else {
2026
+ r = (0, BestFitMatcher_1.BestFitMatcher)(availableLocales, requestedLocales, getDefaultLocale);
2027
+ }
2028
+ var foundLocale = r.locale;
2029
+ var result = { locale: "", dataLocale: foundLocale };
2030
+ var supportedExtension = "-u";
2031
+ for (var _i = 0, relevantExtensionKeys_1 = relevantExtensionKeys; _i < relevantExtensionKeys_1.length; _i++) {
2032
+ var key = relevantExtensionKeys_1[_i];
2033
+ (0, utils_1.invariant)(foundLocale in localeData, "Missing locale data for ".concat(foundLocale));
2034
+ var foundLocaleData = localeData[foundLocale];
2035
+ (0, utils_1.invariant)(typeof foundLocaleData === "object" && foundLocaleData !== null, "locale data ".concat(key, " must be an object"));
2036
+ var keyLocaleData = foundLocaleData[key];
2037
+ (0, utils_1.invariant)(Array.isArray(keyLocaleData), "keyLocaleData for ".concat(key, " must be an array"));
2038
+ var value = keyLocaleData[0];
2039
+ (0, utils_1.invariant)(typeof value === "string" || value === null, "value must be string or null but got ".concat(typeof value, " in key ").concat(key));
2040
+ var supportedExtensionAddition = "";
2041
+ if (r.extension) {
2042
+ var requestedValue = (0, UnicodeExtensionValue_1.UnicodeExtensionValue)(r.extension, key);
2043
+ if (requestedValue !== void 0) {
2044
+ if (requestedValue !== "") {
2045
+ if (~keyLocaleData.indexOf(requestedValue)) {
2046
+ value = requestedValue;
2047
+ supportedExtensionAddition = "-".concat(key, "-").concat(value);
2048
+ }
2049
+ } else if (~requestedValue.indexOf("true")) {
2050
+ value = "true";
2051
+ supportedExtensionAddition = "-".concat(key);
2052
+ }
2053
+ }
2054
+ }
2055
+ if (key in options) {
2056
+ var optionsValue = options[key];
2057
+ (0, utils_1.invariant)(typeof optionsValue === "string" || typeof optionsValue === "undefined" || optionsValue === null, "optionsValue must be String, Undefined or Null");
2058
+ if (~keyLocaleData.indexOf(optionsValue)) {
2059
+ if (optionsValue !== value) {
2060
+ value = optionsValue;
2061
+ supportedExtensionAddition = "";
2062
+ }
1013
2063
  }
1014
- } else if (~requestedValue.indexOf("true")) {
1015
- value = "true";
1016
- supportedExtensionAddition = "-".concat(key);
1017
2064
  }
2065
+ result[key] = value;
2066
+ supportedExtension += supportedExtensionAddition;
1018
2067
  }
1019
- }
1020
- if (key in options) {
1021
- var optionsValue = options[key];
1022
- invariant2(typeof optionsValue === "string" || typeof optionsValue === "undefined" || optionsValue === null, "optionsValue must be String, Undefined or Null");
1023
- if (~keyLocaleData.indexOf(optionsValue)) {
1024
- if (optionsValue !== value) {
1025
- value = optionsValue;
1026
- supportedExtensionAddition = "";
2068
+ if (supportedExtension.length > 2) {
2069
+ var privateIndex = foundLocale.indexOf("-x-");
2070
+ if (privateIndex === -1) {
2071
+ foundLocale = foundLocale + supportedExtension;
2072
+ } else {
2073
+ var preExtension = foundLocale.slice(0, privateIndex);
2074
+ var postExtension = foundLocale.slice(privateIndex, foundLocale.length);
2075
+ foundLocale = preExtension + supportedExtension + postExtension;
1027
2076
  }
2077
+ foundLocale = Intl.getCanonicalLocales(foundLocale)[0];
1028
2078
  }
2079
+ result.locale = foundLocale;
2080
+ return result;
1029
2081
  }
1030
- result[key] = value;
1031
- supportedExtension += supportedExtensionAddition;
1032
- }
1033
- if (supportedExtension.length > 2) {
1034
- var privateIndex = foundLocale.indexOf("-x-");
1035
- if (privateIndex === -1) {
1036
- foundLocale = foundLocale + supportedExtension;
1037
- } else {
1038
- var preExtension = foundLocale.slice(0, privateIndex);
1039
- var postExtension = foundLocale.slice(privateIndex, foundLocale.length);
1040
- foundLocale = preExtension + supportedExtension + postExtension;
1041
- }
1042
- foundLocale = Intl.getCanonicalLocales(foundLocale)[0];
2082
+ exports.ResolveLocale = ResolveLocale;
1043
2083
  }
1044
- result.locale = foundLocale;
1045
- return result;
1046
- }
2084
+ });
1047
2085
 
1048
- // bazel-out/darwin-fastbuild/bin/packages/intl-localematcher/lib/abstract/LookupSupportedLocales.js
1049
- function LookupSupportedLocales(availableLocales, requestedLocales) {
1050
- var subset = [];
1051
- for (var _i = 0, requestedLocales_1 = requestedLocales; _i < requestedLocales_1.length; _i++) {
1052
- var locale = requestedLocales_1[_i];
1053
- var noExtensionLocale = locale.replace(UNICODE_EXTENSION_SEQUENCE_REGEX, "");
1054
- var availableLocale = BestAvailableLocale(availableLocales, noExtensionLocale);
1055
- if (availableLocale) {
1056
- subset.push(availableLocale);
2086
+ // bazel-out/darwin-fastbuild/bin/packages/intl-localematcher/abstract/LookupSupportedLocales.js
2087
+ var require_LookupSupportedLocales = __commonJS({
2088
+ "bazel-out/darwin-fastbuild/bin/packages/intl-localematcher/abstract/LookupSupportedLocales.js": function(exports) {
2089
+ "use strict";
2090
+ Object.defineProperty(exports, "__esModule", { value: true });
2091
+ exports.LookupSupportedLocales = void 0;
2092
+ var utils_1 = require_utils2();
2093
+ var BestAvailableLocale_1 = require_BestAvailableLocale();
2094
+ function LookupSupportedLocales(availableLocales, requestedLocales) {
2095
+ var subset = [];
2096
+ for (var _i = 0, requestedLocales_1 = requestedLocales; _i < requestedLocales_1.length; _i++) {
2097
+ var locale = requestedLocales_1[_i];
2098
+ var noExtensionLocale = locale.replace(utils_1.UNICODE_EXTENSION_SEQUENCE_REGEX, "");
2099
+ var availableLocale = (0, BestAvailableLocale_1.BestAvailableLocale)(availableLocales, noExtensionLocale);
2100
+ if (availableLocale) {
2101
+ subset.push(availableLocale);
2102
+ }
2103
+ }
2104
+ return subset;
1057
2105
  }
2106
+ exports.LookupSupportedLocales = LookupSupportedLocales;
1058
2107
  }
1059
- return subset;
1060
- }
2108
+ });
1061
2109
 
1062
- // bazel-out/darwin-fastbuild/bin/packages/intl-localematcher/lib/index.js
1063
- function match(requestedLocales, availableLocales, defaultLocale, opts) {
1064
- var locales = availableLocales.reduce(function(all, l) {
1065
- all.add(l);
1066
- return all;
1067
- }, /* @__PURE__ */ new Set());
1068
- return ResolveLocale(locales, CanonicalizeLocaleList2(requestedLocales), {
1069
- localeMatcher: (opts === null || opts === void 0 ? void 0 : opts.algorithm) || "best fit"
1070
- }, [], {}, function() {
1071
- return defaultLocale;
1072
- }).locale;
1073
- }
2110
+ // bazel-out/darwin-fastbuild/bin/packages/intl-localematcher/index.js
2111
+ var require_intl_localematcher = __commonJS({
2112
+ "bazel-out/darwin-fastbuild/bin/packages/intl-localematcher/index.js": function(exports) {
2113
+ "use strict";
2114
+ Object.defineProperty(exports, "__esModule", { value: true });
2115
+ exports.ResolveLocale = exports.LookupSupportedLocales = exports.match = void 0;
2116
+ var CanonicalizeLocaleList_1 = require_CanonicalizeLocaleList2();
2117
+ var ResolveLocale_1 = require_ResolveLocale();
2118
+ function match2(requestedLocales, availableLocales, defaultLocale, opts) {
2119
+ var locales = availableLocales.reduce(function(all, l) {
2120
+ all.add(l);
2121
+ return all;
2122
+ }, /* @__PURE__ */ new Set());
2123
+ return (0, ResolveLocale_1.ResolveLocale)(locales, (0, CanonicalizeLocaleList_1.CanonicalizeLocaleList)(requestedLocales), {
2124
+ localeMatcher: (opts === null || opts === void 0 ? void 0 : opts.algorithm) || "best fit"
2125
+ }, [], {}, function() {
2126
+ return defaultLocale;
2127
+ }).locale;
2128
+ }
2129
+ exports.match = match2;
2130
+ var LookupSupportedLocales_1 = require_LookupSupportedLocales();
2131
+ Object.defineProperty(exports, "LookupSupportedLocales", { enumerable: true, get: function() {
2132
+ return LookupSupportedLocales_1.LookupSupportedLocales;
2133
+ } });
2134
+ var ResolveLocale_2 = require_ResolveLocale();
2135
+ Object.defineProperty(exports, "ResolveLocale", { enumerable: true, get: function() {
2136
+ return ResolveLocale_2.ResolveLocale;
2137
+ } });
2138
+ }
2139
+ });
1074
2140
 
1075
- // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/NumberFormat/SetNumberFormatUnitOptions.js
1076
- function SetNumberFormatUnitOptions(nf, options, _a) {
1077
- if (options === void 0) {
1078
- options = /* @__PURE__ */ Object.create(null);
2141
+ // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/NumberFormat/SetNumberFormatUnitOptions.js
2142
+ var require_SetNumberFormatUnitOptions = __commonJS({
2143
+ "bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/NumberFormat/SetNumberFormatUnitOptions.js": function(exports) {
2144
+ "use strict";
2145
+ Object.defineProperty(exports, "__esModule", { value: true });
2146
+ exports.SetNumberFormatUnitOptions = void 0;
2147
+ var GetOption_1 = require_GetOption();
2148
+ var IsWellFormedCurrencyCode_1 = require_IsWellFormedCurrencyCode();
2149
+ var IsWellFormedUnitIdentifier_1 = require_IsWellFormedUnitIdentifier();
2150
+ function SetNumberFormatUnitOptions(nf, options, _a) {
2151
+ if (options === void 0) {
2152
+ options = /* @__PURE__ */ Object.create(null);
2153
+ }
2154
+ var getInternalSlots2 = _a.getInternalSlots;
2155
+ var internalSlots = getInternalSlots2(nf);
2156
+ var style = (0, GetOption_1.GetOption)(options, "style", "string", ["decimal", "percent", "currency", "unit"], "decimal");
2157
+ internalSlots.style = style;
2158
+ var currency = (0, GetOption_1.GetOption)(options, "currency", "string", void 0, void 0);
2159
+ if (currency !== void 0 && !(0, IsWellFormedCurrencyCode_1.IsWellFormedCurrencyCode)(currency)) {
2160
+ throw RangeError("Malformed currency code");
2161
+ }
2162
+ if (style === "currency" && currency === void 0) {
2163
+ throw TypeError("currency cannot be undefined");
2164
+ }
2165
+ var currencyDisplay = (0, GetOption_1.GetOption)(options, "currencyDisplay", "string", ["code", "symbol", "narrowSymbol", "name"], "symbol");
2166
+ var currencySign = (0, GetOption_1.GetOption)(options, "currencySign", "string", ["standard", "accounting"], "standard");
2167
+ var unit = (0, GetOption_1.GetOption)(options, "unit", "string", void 0, void 0);
2168
+ if (unit !== void 0 && !(0, IsWellFormedUnitIdentifier_1.IsWellFormedUnitIdentifier)(unit)) {
2169
+ throw RangeError("Invalid unit argument for Intl.NumberFormat()");
2170
+ }
2171
+ if (style === "unit" && unit === void 0) {
2172
+ throw TypeError("unit cannot be undefined");
2173
+ }
2174
+ var unitDisplay = (0, GetOption_1.GetOption)(options, "unitDisplay", "string", ["short", "narrow", "long"], "short");
2175
+ if (style === "currency") {
2176
+ internalSlots.currency = currency.toUpperCase();
2177
+ internalSlots.currencyDisplay = currencyDisplay;
2178
+ internalSlots.currencySign = currencySign;
2179
+ }
2180
+ if (style === "unit") {
2181
+ internalSlots.unit = unit;
2182
+ internalSlots.unitDisplay = unitDisplay;
2183
+ }
2184
+ }
2185
+ exports.SetNumberFormatUnitOptions = SetNumberFormatUnitOptions;
1079
2186
  }
1080
- var getInternalSlots2 = _a.getInternalSlots;
1081
- var internalSlots = getInternalSlots2(nf);
1082
- var style = GetOption(options, "style", "string", ["decimal", "percent", "currency", "unit"], "decimal");
1083
- internalSlots.style = style;
1084
- var currency = GetOption(options, "currency", "string", void 0, void 0);
1085
- if (currency !== void 0 && !IsWellFormedCurrencyCode(currency)) {
1086
- throw RangeError("Malformed currency code");
2187
+ });
2188
+
2189
+ // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/NumberFormat/SetNumberFormatDigitOptions.js
2190
+ var require_SetNumberFormatDigitOptions = __commonJS({
2191
+ "bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/NumberFormat/SetNumberFormatDigitOptions.js": function(exports) {
2192
+ "use strict";
2193
+ Object.defineProperty(exports, "__esModule", { value: true });
2194
+ exports.SetNumberFormatDigitOptions = void 0;
2195
+ var GetNumberOption_1 = require_GetNumberOption();
2196
+ var DefaultNumberOption_1 = require_DefaultNumberOption();
2197
+ function SetNumberFormatDigitOptions(internalSlots, opts, mnfdDefault, mxfdDefault, notation) {
2198
+ var mnid = (0, GetNumberOption_1.GetNumberOption)(opts, "minimumIntegerDigits", 1, 21, 1);
2199
+ var mnfd = opts.minimumFractionDigits;
2200
+ var mxfd = opts.maximumFractionDigits;
2201
+ var mnsd = opts.minimumSignificantDigits;
2202
+ var mxsd = opts.maximumSignificantDigits;
2203
+ internalSlots.minimumIntegerDigits = mnid;
2204
+ if (mnsd !== void 0 || mxsd !== void 0) {
2205
+ internalSlots.roundingType = "significantDigits";
2206
+ mnsd = (0, DefaultNumberOption_1.DefaultNumberOption)(mnsd, 1, 21, 1);
2207
+ mxsd = (0, DefaultNumberOption_1.DefaultNumberOption)(mxsd, mnsd, 21, 21);
2208
+ internalSlots.minimumSignificantDigits = mnsd;
2209
+ internalSlots.maximumSignificantDigits = mxsd;
2210
+ } else if (mnfd !== void 0 || mxfd !== void 0) {
2211
+ internalSlots.roundingType = "fractionDigits";
2212
+ mnfd = (0, DefaultNumberOption_1.DefaultNumberOption)(mnfd, 0, 20, mnfdDefault);
2213
+ var mxfdActualDefault = Math.max(mnfd, mxfdDefault);
2214
+ mxfd = (0, DefaultNumberOption_1.DefaultNumberOption)(mxfd, mnfd, 20, mxfdActualDefault);
2215
+ internalSlots.minimumFractionDigits = mnfd;
2216
+ internalSlots.maximumFractionDigits = mxfd;
2217
+ } else if (notation === "compact") {
2218
+ internalSlots.roundingType = "compactRounding";
2219
+ } else {
2220
+ internalSlots.roundingType = "fractionDigits";
2221
+ internalSlots.minimumFractionDigits = mnfdDefault;
2222
+ internalSlots.maximumFractionDigits = mxfdDefault;
2223
+ }
2224
+ }
2225
+ exports.SetNumberFormatDigitOptions = SetNumberFormatDigitOptions;
1087
2226
  }
1088
- if (style === "currency" && currency === void 0) {
1089
- throw TypeError("currency cannot be undefined");
2227
+ });
2228
+
2229
+ // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/NumberFormat/InitializeNumberFormat.js
2230
+ var require_InitializeNumberFormat = __commonJS({
2231
+ "bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/NumberFormat/InitializeNumberFormat.js": function(exports) {
2232
+ "use strict";
2233
+ Object.defineProperty(exports, "__esModule", { value: true });
2234
+ exports.InitializeNumberFormat = void 0;
2235
+ var CanonicalizeLocaleList_1 = require_CanonicalizeLocaleList();
2236
+ var GetOption_1 = require_GetOption();
2237
+ var intl_localematcher_1 = require_intl_localematcher();
2238
+ var SetNumberFormatUnitOptions_1 = require_SetNumberFormatUnitOptions();
2239
+ var CurrencyDigits_1 = require_CurrencyDigits();
2240
+ var SetNumberFormatDigitOptions_1 = require_SetNumberFormatDigitOptions();
2241
+ var utils_1 = require_utils();
2242
+ var CoerceOptionsToObject_1 = require_CoerceOptionsToObject();
2243
+ function InitializeNumberFormat2(nf, locales, opts, _a) {
2244
+ var getInternalSlots2 = _a.getInternalSlots, localeData = _a.localeData, availableLocales = _a.availableLocales, numberingSystemNames2 = _a.numberingSystemNames, getDefaultLocale = _a.getDefaultLocale, currencyDigitsData2 = _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 && numberingSystemNames2.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: currencyDigitsData2 });
2270
+ mnfdDefault = cDigits;
2271
+ mxfdDefault = cDigits;
2272
+ } else {
2273
+ mnfdDefault = 0;
2274
+ mxfdDefault = style === "percent" ? 0 : 3;
2275
+ }
2276
+ var notation = (0, GetOption_1.GetOption)(options, "notation", "string", ["standard", "scientific", "engineering", "compact"], "standard");
2277
+ internalSlots.notation = notation;
2278
+ (0, SetNumberFormatDigitOptions_1.SetNumberFormatDigitOptions)(internalSlots, options, mnfdDefault, mxfdDefault, notation);
2279
+ var compactDisplay = (0, GetOption_1.GetOption)(options, "compactDisplay", "string", ["short", "long"], "short");
2280
+ if (notation === "compact") {
2281
+ internalSlots.compactDisplay = compactDisplay;
2282
+ }
2283
+ var useGrouping = (0, GetOption_1.GetOption)(options, "useGrouping", "boolean", void 0, true);
2284
+ internalSlots.useGrouping = useGrouping;
2285
+ var signDisplay = (0, GetOption_1.GetOption)(options, "signDisplay", "string", ["auto", "never", "always", "exceptZero"], "auto");
2286
+ internalSlots.signDisplay = signDisplay;
2287
+ return nf;
2288
+ }
2289
+ exports.InitializeNumberFormat = InitializeNumberFormat2;
1090
2290
  }
1091
- var currencyDisplay = GetOption(options, "currencyDisplay", "string", ["code", "symbol", "narrowSymbol", "name"], "symbol");
1092
- var currencySign = GetOption(options, "currencySign", "string", ["standard", "accounting"], "standard");
1093
- var unit = GetOption(options, "unit", "string", void 0, void 0);
1094
- if (unit !== void 0 && !IsWellFormedUnitIdentifier(unit)) {
1095
- throw RangeError("Invalid unit argument for Intl.NumberFormat()");
2291
+ });
2292
+
2293
+ // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/PartitionPattern.js
2294
+ var require_PartitionPattern = __commonJS({
2295
+ "bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/PartitionPattern.js": function(exports) {
2296
+ "use strict";
2297
+ Object.defineProperty(exports, "__esModule", { value: true });
2298
+ exports.PartitionPattern = void 0;
2299
+ var utils_1 = require_utils();
2300
+ function PartitionPattern(pattern) {
2301
+ var result = [];
2302
+ var beginIndex = pattern.indexOf("{");
2303
+ var endIndex = 0;
2304
+ var nextIndex = 0;
2305
+ var length = pattern.length;
2306
+ while (beginIndex < pattern.length && beginIndex > -1) {
2307
+ endIndex = pattern.indexOf("}", beginIndex);
2308
+ (0, utils_1.invariant)(endIndex > beginIndex, "Invalid pattern ".concat(pattern));
2309
+ if (beginIndex > nextIndex) {
2310
+ result.push({
2311
+ type: "literal",
2312
+ value: pattern.substring(nextIndex, beginIndex)
2313
+ });
2314
+ }
2315
+ result.push({
2316
+ type: pattern.substring(beginIndex + 1, endIndex),
2317
+ value: void 0
2318
+ });
2319
+ nextIndex = endIndex + 1;
2320
+ beginIndex = pattern.indexOf("{", nextIndex);
2321
+ }
2322
+ if (nextIndex < length) {
2323
+ result.push({
2324
+ type: "literal",
2325
+ value: pattern.substring(nextIndex, length)
2326
+ });
2327
+ }
2328
+ return result;
2329
+ }
2330
+ exports.PartitionPattern = PartitionPattern;
1096
2331
  }
1097
- if (style === "unit" && unit === void 0) {
1098
- throw TypeError("unit cannot be undefined");
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);
2353
+ }
2354
+ exports.SupportedLocales = SupportedLocales2;
1099
2355
  }
1100
- var unitDisplay = GetOption(options, "unitDisplay", "string", ["short", "narrow", "long"], "short");
1101
- if (style === "currency") {
1102
- internalSlots.currency = currency.toUpperCase();
1103
- internalSlots.currencyDisplay = currencyDisplay;
1104
- internalSlots.currencySign = currencySign;
2356
+ });
2357
+
2358
+ // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/data.js
2359
+ var require_data = __commonJS({
2360
+ "bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/data.js": function(exports) {
2361
+ "use strict";
2362
+ Object.defineProperty(exports, "__esModule", { value: true });
2363
+ exports.isMissingLocaleDataError = void 0;
2364
+ var tslib_1 = require_tslib();
2365
+ var MissingLocaleDataError = function(_super) {
2366
+ (0, tslib_1.__extends)(MissingLocaleDataError2, _super);
2367
+ function MissingLocaleDataError2() {
2368
+ var _this = _super !== null && _super.apply(this, arguments) || this;
2369
+ _this.type = "MISSING_LOCALE_DATA";
2370
+ return _this;
2371
+ }
2372
+ return MissingLocaleDataError2;
2373
+ }(Error);
2374
+ function isMissingLocaleDataError(e) {
2375
+ return e.type === "MISSING_LOCALE_DATA";
2376
+ }
2377
+ exports.isMissingLocaleDataError = isMissingLocaleDataError;
1105
2378
  }
1106
- if (style === "unit") {
1107
- internalSlots.unit = unit;
1108
- internalSlots.unitDisplay = unitDisplay;
2379
+ });
2380
+
2381
+ // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/types/relative-time.js
2382
+ var require_relative_time = __commonJS({
2383
+ "bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/types/relative-time.js": function(exports) {
2384
+ "use strict";
2385
+ Object.defineProperty(exports, "__esModule", { value: true });
1109
2386
  }
1110
- }
2387
+ });
1111
2388
 
1112
- // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/NumberFormat/SetNumberFormatDigitOptions.js
1113
- function SetNumberFormatDigitOptions(internalSlots, opts, mnfdDefault, mxfdDefault, notation) {
1114
- var mnid = GetNumberOption(opts, "minimumIntegerDigits", 1, 21, 1);
1115
- var mnfd = opts.minimumFractionDigits;
1116
- var mxfd = opts.maximumFractionDigits;
1117
- var mnsd = opts.minimumSignificantDigits;
1118
- var mxsd = opts.maximumSignificantDigits;
1119
- internalSlots.minimumIntegerDigits = mnid;
1120
- if (mnsd !== void 0 || mxsd !== void 0) {
1121
- internalSlots.roundingType = "significantDigits";
1122
- mnsd = DefaultNumberOption(mnsd, 1, 21, 1);
1123
- mxsd = DefaultNumberOption(mxsd, mnsd, 21, 21);
1124
- internalSlots.minimumSignificantDigits = mnsd;
1125
- internalSlots.maximumSignificantDigits = mxsd;
1126
- } else if (mnfd !== void 0 || mxfd !== void 0) {
1127
- internalSlots.roundingType = "fractionDigits";
1128
- mnfd = DefaultNumberOption(mnfd, 0, 20, mnfdDefault);
1129
- var mxfdActualDefault = Math.max(mnfd, mxfdDefault);
1130
- mxfd = DefaultNumberOption(mxfd, mnfd, 20, mxfdActualDefault);
1131
- internalSlots.minimumFractionDigits = mnfd;
1132
- internalSlots.maximumFractionDigits = mxfd;
1133
- } else if (notation === "compact") {
1134
- internalSlots.roundingType = "compactRounding";
1135
- } else {
1136
- internalSlots.roundingType = "fractionDigits";
1137
- internalSlots.minimumFractionDigits = mnfdDefault;
1138
- internalSlots.maximumFractionDigits = mxfdDefault;
2389
+ // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/types/date-time.js
2390
+ var require_date_time = __commonJS({
2391
+ "bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/types/date-time.js": function(exports) {
2392
+ "use strict";
2393
+ Object.defineProperty(exports, "__esModule", { value: true });
2394
+ exports.RangePatternType = void 0;
2395
+ var RangePatternType;
2396
+ (function(RangePatternType2) {
2397
+ RangePatternType2["startRange"] = "startRange";
2398
+ RangePatternType2["shared"] = "shared";
2399
+ RangePatternType2["endRange"] = "endRange";
2400
+ })(RangePatternType = exports.RangePatternType || (exports.RangePatternType = {}));
1139
2401
  }
1140
- }
2402
+ });
1141
2403
 
1142
- // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/NumberFormat/InitializeNumberFormat.js
1143
- function InitializeNumberFormat(nf, locales, opts, _a) {
1144
- var getInternalSlots2 = _a.getInternalSlots, localeData = _a.localeData, availableLocales = _a.availableLocales, numberingSystemNames2 = _a.numberingSystemNames, getDefaultLocale = _a.getDefaultLocale, currencyDigitsData2 = _a.currencyDigitsData;
1145
- var requestedLocales = CanonicalizeLocaleList(locales);
1146
- var options = CoerceOptionsToObject(opts);
1147
- var opt = /* @__PURE__ */ Object.create(null);
1148
- var matcher = GetOption(options, "localeMatcher", "string", ["lookup", "best fit"], "best fit");
1149
- opt.localeMatcher = matcher;
1150
- var numberingSystem = GetOption(options, "numberingSystem", "string", void 0, void 0);
1151
- if (numberingSystem !== void 0 && numberingSystemNames2.indexOf(numberingSystem) < 0) {
1152
- throw RangeError("Invalid numberingSystems: ".concat(numberingSystem));
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 });
1153
2409
  }
1154
- opt.nu = numberingSystem;
1155
- var r = ResolveLocale(availableLocales, requestedLocales, opt, ["nu"], localeData, getDefaultLocale);
1156
- var dataLocaleData = localeData[r.dataLocale];
1157
- invariant(!!dataLocaleData, "Missing locale data for ".concat(r.dataLocale));
1158
- var internalSlots = getInternalSlots2(nf);
1159
- internalSlots.locale = r.locale;
1160
- internalSlots.dataLocale = r.dataLocale;
1161
- internalSlots.numberingSystem = r.nu;
1162
- internalSlots.dataLocaleData = dataLocaleData;
1163
- SetNumberFormatUnitOptions(nf, options, { getInternalSlots: getInternalSlots2 });
1164
- var style = internalSlots.style;
1165
- var mnfdDefault;
1166
- var mxfdDefault;
1167
- if (style === "currency") {
1168
- var currency = internalSlots.currency;
1169
- var cDigits = CurrencyDigits(currency, { currencyDigitsData: currencyDigitsData2 });
1170
- mnfdDefault = cDigits;
1171
- mxfdDefault = cDigits;
1172
- } else {
1173
- mnfdDefault = 0;
1174
- mxfdDefault = style === "percent" ? 0 : 3;
2410
+ });
2411
+
2412
+ // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/types/plural-rules.js
2413
+ var require_plural_rules = __commonJS({
2414
+ "bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/types/plural-rules.js": function(exports) {
2415
+ "use strict";
2416
+ Object.defineProperty(exports, "__esModule", { value: true });
1175
2417
  }
1176
- var notation = GetOption(options, "notation", "string", ["standard", "scientific", "engineering", "compact"], "standard");
1177
- internalSlots.notation = notation;
1178
- SetNumberFormatDigitOptions(internalSlots, options, mnfdDefault, mxfdDefault, notation);
1179
- var compactDisplay = GetOption(options, "compactDisplay", "string", ["short", "long"], "short");
1180
- if (notation === "compact") {
1181
- internalSlots.compactDisplay = compactDisplay;
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 });
1182
2425
  }
1183
- var useGrouping = GetOption(options, "useGrouping", "boolean", void 0, true);
1184
- internalSlots.useGrouping = useGrouping;
1185
- var signDisplay = GetOption(options, "signDisplay", "string", ["auto", "never", "always", "exceptZero"], "auto");
1186
- internalSlots.signDisplay = signDisplay;
1187
- return nf;
1188
- }
2426
+ });
1189
2427
 
1190
- // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/SupportedLocales.js
1191
- function SupportedLocales(availableLocales, requestedLocales, options) {
1192
- var matcher = "best fit";
1193
- if (options !== void 0) {
1194
- options = ToObject(options);
1195
- 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 });
1196
2433
  }
1197
- if (matcher === "best fit") {
1198
- return 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);
1199
2507
  }
1200
- return LookupSupportedLocales(availableLocales, requestedLocales);
1201
- }
2508
+ });
2509
+
2510
+ // bazel-out/darwin-fastbuild/bin/packages/intl-numberformat/lib/src/core.js
2511
+ var import_ecma402_abstract = __toESM(require_ecma402_abstract());
1202
2512
 
1203
2513
  // bazel-out/darwin-fastbuild/bin/packages/intl-numberformat/lib/src/currency-digits.generated.js
1204
2514
  var currencyDigitsData = { "ADP": 0, "AFN": 0, "ALL": 0, "AMD": 2, "BHD": 3, "BIF": 0, "BYN": 2, "BYR": 0, "CAD": 2, "CHF": 2, "CLF": 4, "CLP": 0, "COP": 2, "CRC": 2, "CZK": 2, "DEFAULT": 2, "DJF": 0, "DKK": 2, "ESP": 0, "GNF": 0, "GYD": 2, "HUF": 2, "IDR": 2, "IQD": 0, "IRR": 0, "ISK": 0, "ITL": 0, "JOD": 3, "JPY": 0, "KMF": 0, "KPW": 0, "KRW": 0, "KWD": 3, "LAK": 0, "LBP": 0, "LUF": 0, "LYD": 3, "MGA": 0, "MGF": 0, "MMK": 0, "MNT": 2, "MRO": 0, "MUR": 2, "NOK": 2, "OMR": 3, "PKR": 2, "PYG": 0, "RSD": 0, "RWF": 0, "SEK": 2, "SLL": 0, "SOS": 0, "STD": 0, "SYP": 0, "TMM": 0, "TND": 3, "TRL": 0, "TWD": 2, "TZS": 2, "UGX": 0, "UYI": 0, "UYW": 4, "UZS": 2, "VEF": 2, "VND": 0, "VUV": 0, "XAF": 0, "XOF": 0, "XPF": 0, "YER": 0, "ZMK": 0, "ZWD": 0 };
@@ -1238,10 +2548,10 @@
1238
2548
  "signDisplay"
1239
2549
  ];
1240
2550
  var NumberFormat = function(locales, options) {
1241
- if (!this || !OrdinaryHasInstance(NumberFormat, this)) {
2551
+ if (!this || !(0, import_ecma402_abstract.OrdinaryHasInstance)(NumberFormat, this)) {
1242
2552
  return new NumberFormat(locales, options);
1243
2553
  }
1244
- InitializeNumberFormat(this, locales, options, {
2554
+ (0, import_ecma402_abstract.InitializeNumberFormat)(this, locales, options, {
1245
2555
  getInternalSlots: getInternalSlots,
1246
2556
  localeData: NumberFormat.localeData,
1247
2557
  availableLocales: NumberFormat.availableLocales,
@@ -1252,7 +2562,7 @@
1252
2562
  var internalSlots = getInternalSlots(this);
1253
2563
  var dataLocale = internalSlots.dataLocale;
1254
2564
  var dataLocaleData = NumberFormat.localeData[dataLocale];
1255
- invariant(dataLocaleData !== void 0, "Cannot load locale-dependent data for ".concat(dataLocale, "."));
2565
+ (0, import_ecma402_abstract.invariant)(dataLocaleData !== void 0, "Cannot load locale-dependent data for ".concat(dataLocale, "."));
1256
2566
  internalSlots.pl = new Intl.PluralRules(dataLocale, {
1257
2567
  minimumFractionDigits: internalSlots.minimumFractionDigits,
1258
2568
  maximumFractionDigits: internalSlots.maximumFractionDigits,
@@ -1262,13 +2572,13 @@
1262
2572
  });
1263
2573
  return this;
1264
2574
  };
1265
- function formatToParts2(x) {
1266
- return FormatNumericToParts(this, toNumeric(x), {
2575
+ function formatToParts(x) {
2576
+ return (0, import_ecma402_abstract.FormatNumericToParts)(this, toNumeric(x), {
1267
2577
  getInternalSlots: getInternalSlots
1268
2578
  });
1269
2579
  }
1270
2580
  try {
1271
- Object.defineProperty(formatToParts2, "name", {
2581
+ Object.defineProperty(formatToParts, "name", {
1272
2582
  value: "formatToParts",
1273
2583
  enumerable: false,
1274
2584
  writable: false,
@@ -1276,12 +2586,12 @@
1276
2586
  });
1277
2587
  } catch (e) {
1278
2588
  }
1279
- defineProperty(NumberFormat.prototype, "formatToParts", {
1280
- value: formatToParts2
2589
+ (0, import_ecma402_abstract.defineProperty)(NumberFormat.prototype, "formatToParts", {
2590
+ value: formatToParts
1281
2591
  });
1282
- defineProperty(NumberFormat.prototype, "resolvedOptions", {
2592
+ (0, import_ecma402_abstract.defineProperty)(NumberFormat.prototype, "resolvedOptions", {
1283
2593
  value: function resolvedOptions() {
1284
- if (typeof this !== "object" || !OrdinaryHasInstance(NumberFormat, this)) {
2594
+ if (typeof this !== "object" || !(0, import_ecma402_abstract.OrdinaryHasInstance)(NumberFormat, this)) {
1285
2595
  throw TypeError("Method Intl.NumberFormat.prototype.resolvedOptions called on incompatible receiver");
1286
2596
  }
1287
2597
  var internalSlots = getInternalSlots(this);
@@ -1300,7 +2610,7 @@
1300
2610
  enumerable: false,
1301
2611
  configurable: true,
1302
2612
  get: function() {
1303
- if (typeof this !== "object" || !OrdinaryHasInstance(NumberFormat, this)) {
2613
+ if (typeof this !== "object" || !(0, import_ecma402_abstract.OrdinaryHasInstance)(NumberFormat, this)) {
1304
2614
  throw TypeError("Intl.NumberFormat format property accessor called on incompatible receiver");
1305
2615
  }
1306
2616
  var internalSlots = getInternalSlots(this);
@@ -1337,9 +2647,9 @@
1337
2647
  } catch (e) {
1338
2648
  }
1339
2649
  Object.defineProperty(NumberFormat.prototype, "format", formatDescriptor);
1340
- defineProperty(NumberFormat, "supportedLocalesOf", {
2650
+ (0, import_ecma402_abstract.defineProperty)(NumberFormat, "supportedLocalesOf", {
1341
2651
  value: function supportedLocalesOf(locales, options) {
1342
- return SupportedLocales(NumberFormat.availableLocales, CanonicalizeLocaleList(locales), options);
2652
+ return (0, import_ecma402_abstract.SupportedLocales)(NumberFormat.availableLocales, (0, import_ecma402_abstract.CanonicalizeLocaleList)(locales), options);
1343
2653
  }
1344
2654
  });
1345
2655
  NumberFormat.__addLocaleData = function __addLocaleData() {
@@ -1381,7 +2691,7 @@
1381
2691
  if (typeof val === "bigint") {
1382
2692
  return val;
1383
2693
  }
1384
- return ToNumber(val);
2694
+ return (0, import_ecma402_abstract.ToNumber)(val);
1385
2695
  }
1386
2696
  try {
1387
2697
  if (typeof Symbol !== "undefined") {
@@ -1419,6 +2729,12 @@
1419
2729
  return numberFormat.format(x);
1420
2730
  }
1421
2731
 
2732
+ // bazel-out/darwin-fastbuild/bin/packages/intl-numberformat/lib/polyfill.js
2733
+ var import_ecma402_abstract2 = __toESM(require_ecma402_abstract());
2734
+
2735
+ // bazel-out/darwin-fastbuild/bin/packages/intl-numberformat/lib/should-polyfill.js
2736
+ var import_intl_localematcher = __toESM(require_intl_localematcher());
2737
+
1422
2738
  // bazel-out/darwin-fastbuild/bin/packages/intl-numberformat/lib/supported-locales.js
1423
2739
  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"];
1424
2740
 
@@ -1454,14 +2770,14 @@
1454
2770
  locale = "en";
1455
2771
  }
1456
2772
  if (typeof Intl === "undefined" || !("NumberFormat" in Intl) || !supportsES2020() || onlySupportsEn() || !supportedLocalesOf2(locale)) {
1457
- return locale ? match([locale], supportedLocales, "en") : void 0;
2773
+ return locale ? (0, import_intl_localematcher.match)([locale], supportedLocales, "en") : void 0;
1458
2774
  }
1459
2775
  }
1460
2776
 
1461
2777
  // bazel-out/darwin-fastbuild/bin/packages/intl-numberformat/lib/polyfill.js
1462
2778
  if (shouldPolyfill()) {
1463
- defineProperty(Intl, "NumberFormat", { value: NumberFormat });
1464
- defineProperty(Number.prototype, "toLocaleString", {
2779
+ (0, import_ecma402_abstract2.defineProperty)(Intl, "NumberFormat", { value: NumberFormat });
2780
+ (0, import_ecma402_abstract2.defineProperty)(Number.prototype, "toLocaleString", {
1465
2781
  value: function toLocaleString2(locales, options) {
1466
2782
  return toLocaleString(this, locales, options);
1467
2783
  }