@formatjs/intl-locale 2.4.43 → 2.4.46

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 +3 -3
  2. package/polyfill.iife.js +4 -4
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@formatjs/intl-locale",
3
- "version": "2.4.43",
3
+ "version": "2.4.46",
4
4
  "description": "Intl.Locale polyfill",
5
5
  "keywords": [
6
6
  "intl",
@@ -24,8 +24,8 @@
24
24
  "url": "https://github.com/formatjs/formatjs/issues"
25
25
  },
26
26
  "dependencies": {
27
- "@formatjs/ecma402-abstract": "1.11.1",
28
- "@formatjs/intl-getcanonicallocales": "1.9.0",
27
+ "@formatjs/ecma402-abstract": "1.11.3",
28
+ "@formatjs/intl-getcanonicallocales": "1.9.1",
29
29
  "tslib": "^2.1.0"
30
30
  }
31
31
  }
package/polyfill.iife.js CHANGED
@@ -4055,7 +4055,7 @@
4055
4055
  // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/CoerceOptionsToObject.js
4056
4056
  function CoerceOptionsToObject(options) {
4057
4057
  if (typeof options === "undefined") {
4058
- return Object.create(null);
4058
+ return /* @__PURE__ */ Object.create(null);
4059
4059
  }
4060
4060
  return ToObject(options);
4061
4061
  }
@@ -4104,7 +4104,7 @@
4104
4104
  function getInternalSlots(x) {
4105
4105
  var internalSlots = internalSlotMap.get(x);
4106
4106
  if (!internalSlots) {
4107
- internalSlots = Object.create(null);
4107
+ internalSlots = /* @__PURE__ */ Object.create(null);
4108
4108
  internalSlotMap.set(x, internalSlots);
4109
4109
  }
4110
4110
  return internalSlots;
@@ -4152,7 +4152,7 @@
4152
4152
  keywords = ext.keywords;
4153
4153
  }
4154
4154
  }
4155
- var result = Object.create(null);
4155
+ var result = /* @__PURE__ */ Object.create(null);
4156
4156
  for (var _b = 0, relevantExtensionKeys_1 = relevantExtensionKeys; _b < relevantExtensionKeys_1.length; _b++) {
4157
4157
  var key = relevantExtensionKeys_1[_b];
4158
4158
  var value = void 0, entry = void 0;
@@ -4307,7 +4307,7 @@
4307
4307
  internalSlots = getInternalSlots(this);
4308
4308
  var options = CoerceOptionsToObject(opts);
4309
4309
  tag = applyOptionsToTag(tag, options);
4310
- var opt = Object.create(null);
4310
+ var opt = /* @__PURE__ */ Object.create(null);
4311
4311
  var calendar = GetOption(options, "calendar", "string", void 0, void 0);
4312
4312
  if (calendar !== void 0) {
4313
4313
  if (!UNICODE_TYPE_REGEX.test(calendar)) {