@formatjs/intl-relativetimeformat 12.3.1 → 12.3.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.d.ts +46 -14
- package/index.js +358 -52
- package/index.js.map +1 -0
- package/package.json +5 -6
- package/polyfill-force.d.ts +1 -1
- package/polyfill-force.js +411 -2
- package/polyfill-force.js.map +1 -0
- package/polyfill.d.ts +1 -1
- package/polyfill.iife.js +4135 -5519
- package/polyfill.js +1003 -3
- package/polyfill.js.map +1 -0
- package/should-polyfill.d.ts +5 -1
- package/should-polyfill.js +583 -8
- package/should-polyfill.js.map +1 -0
- package/abstract/FormatRelativeTime.d.ts +0 -4
- package/abstract/FormatRelativeTime.js +0 -10
- package/abstract/FormatRelativeTimeToParts.d.ts +0 -4
- package/abstract/FormatRelativeTimeToParts.js +0 -5
- package/abstract/InitializeRelativeTimeFormat.d.ts +0 -8
- package/abstract/InitializeRelativeTimeFormat.js +0 -42
- package/abstract/MakePartsList.d.ts +0 -1
- package/abstract/MakePartsList.js +0 -23
- package/abstract/PartitionRelativeTimePattern.d.ts +0 -4
- package/abstract/PartitionRelativeTimePattern.js +0 -43
- package/abstract/SingularRelativeTimeUnit.d.ts +0 -6
- package/abstract/SingularRelativeTimeUnit.js +0 -20
- package/get_internal_slots.d.ts +0 -2
- package/get_internal_slots.js +0 -12
- package/supported-locales.generated.d.ts +0 -1
- package/supported-locales.generated.js +0 -573
package/polyfill.js.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"polyfill.js","names":[],"sources":["../../ecma262-abstract/ToString.js","../../ecma402-abstract/CanonicalizeLocaleList.js","../../ecma262-abstract/ToObject.js","../../ecma402-abstract/GetOption.js","../../ecma402-abstract/SupportedLocales.js","../../ecma402-abstract/CoerceOptionsToObject.js","../../../node_modules/.aspect_rules_js/@formatjs+fast-memoize@0.0.0/node_modules/@formatjs/fast-memoize/index.js","../../ecma402-abstract/utils.js","../../ecma402-abstract/RelativeTimeFormat/InitializeRelativeTimeFormat.js","../../ecma262-abstract/SameValue.js","../../ecma262-abstract/Type.js","../../ecma402-abstract/RelativeTimeFormat/SingularRelativeTimeUnit.js","../../ecma402-abstract/PartitionPattern.js","../../ecma402-abstract/RelativeTimeFormat/MakePartsList.js","../../ecma402-abstract/RelativeTimeFormat/PartitionRelativeTimePattern.js","../get_internal_slots.ts","../index.ts","../../../node_modules/.aspect_rules_js/@formatjs_generated+cldr.supported-locales@0.0.0/node_modules/@formatjs_generated/cldr.supported-locales/intl-relativetimeformat.js","../should-polyfill.ts","../polyfill.ts"],"sourcesContent":["/**\n* https://tc39.es/ecma262/#sec-tostring\n*/\nexport function ToString(o) {\n\tif (typeof o === \"symbol\") {\n\t\tthrow TypeError(\"Cannot convert a Symbol value to a string\");\n\t}\n\treturn String(o);\n}\n","/**\n* http://ecma-international.org/ecma-402/7.0/index.html#sec-canonicalizelocalelist\n* @param locales\n*/\nexport function CanonicalizeLocaleList(locales) {\n\t// TODO\n\treturn Intl.getCanonicalLocales(locales);\n}\n","/**\n* https://tc39.es/ecma262/#sec-toobject\n*/\nexport function ToObject(arg) {\n\tif (arg == null) {\n\t\tthrow new TypeError(\"undefined/null cannot be converted to object\");\n\t}\n\treturn Object(arg);\n}\n","import { ToString } from \"#packages/ecma262-abstract/ToString.js\";\n/**\n* https://tc39.es/ecma402/#sec-getoption\n* @param opts\n* @param prop\n* @param type\n* @param values\n* @param fallback\n*/\nexport function GetOption(opts, prop, type, values, fallback) {\n\tif (typeof opts !== \"object\") {\n\t\tthrow new TypeError(\"Options must be an object\");\n\t}\n\tlet value = opts[prop];\n\tif (value !== undefined) {\n\t\tif (type !== \"boolean\" && type !== \"string\") {\n\t\t\tthrow new TypeError(\"invalid type\");\n\t\t}\n\t\tif (type === \"boolean\") {\n\t\t\tvalue = Boolean(value);\n\t\t}\n\t\tif (type === \"string\") {\n\t\t\tvalue = ToString(value);\n\t\t}\n\t\tif (values !== undefined && !values.filter((val) => val == value).length) {\n\t\t\tthrow new RangeError(`${value} is not within ${values.join(\", \")}`);\n\t\t}\n\t\treturn value;\n\t}\n\treturn fallback;\n}\n","import { LookupSupportedLocales } from \"@formatjs/intl-localematcher\";\nimport { ToObject } from \"#packages/ecma262-abstract/ToObject.js\";\nimport { GetOption } from \"#packages/ecma402-abstract/GetOption.js\";\n/**\n* https://tc39.es/ecma402/#sec-supportedlocales\n* @param availableLocales\n* @param requestedLocales\n* @param options\n*/\nexport function SupportedLocales(availableLocales, requestedLocales, options) {\n\tlet matcher = \"best fit\";\n\tif (options !== undefined) {\n\t\toptions = ToObject(options);\n\t\tmatcher = GetOption(options, \"localeMatcher\", \"string\", [\"lookup\", \"best fit\"], \"best fit\");\n\t}\n\tif (matcher === \"best fit\") {\n\t\treturn LookupSupportedLocales(Array.from(availableLocales), requestedLocales);\n\t}\n\treturn LookupSupportedLocales(Array.from(availableLocales), requestedLocales);\n}\n","import { ToObject } from \"#packages/ecma262-abstract/ToObject.js\";\n/**\n* https://tc39.es/ecma402/#sec-coerceoptionstoobject\n* @param options\n* @returns\n*/\nexport function CoerceOptionsToObject(options) {\n\tif (typeof options === \"undefined\") {\n\t\treturn Object.create(null);\n\t}\n\treturn ToObject(options);\n}\n","//#region packages/fast-memoize/index.ts\nfunction memoize(fn, options) {\n\tconst cache = options && options.cache ? options.cache : cacheDefault;\n\tconst serializer = options && options.serializer ? options.serializer : serializerDefault;\n\treturn (options && options.strategy ? options.strategy : strategyDefault)(fn, {\n\t\tcache,\n\t\tserializer\n\t});\n}\nfunction isPrimitive(value) {\n\treturn value == null || typeof value === \"number\" || typeof value === \"boolean\";\n}\nfunction monadic(fn, cache, serializer, arg) {\n\tconst cacheKey = isPrimitive(arg) ? arg : serializer(arg);\n\tlet computedValue = cache.get(cacheKey);\n\tif (typeof computedValue === \"undefined\") {\n\t\tcomputedValue = fn.call(this, arg);\n\t\tcache.set(cacheKey, computedValue);\n\t}\n\treturn computedValue;\n}\nfunction variadic(fn, cache, serializer) {\n\tconst args = Array.prototype.slice.call(arguments, 3);\n\tconst cacheKey = serializer(args);\n\tlet computedValue = cache.get(cacheKey);\n\tif (typeof computedValue === \"undefined\") {\n\t\tcomputedValue = fn.apply(this, args);\n\t\tcache.set(cacheKey, computedValue);\n\t}\n\treturn computedValue;\n}\nfunction assemble(fn, context, strategy, cache, serialize) {\n\treturn strategy.bind(context, fn, cache, serialize);\n}\nfunction strategyDefault(fn, options) {\n\tconst strategy = fn.length === 1 ? monadic : variadic;\n\treturn assemble(fn, this, strategy, options.cache.create(), options.serializer);\n}\nfunction strategyVariadic(fn, options) {\n\treturn assemble(fn, this, variadic, options.cache.create(), options.serializer);\n}\nfunction strategyMonadic(fn, options) {\n\treturn assemble(fn, this, monadic, options.cache.create(), options.serializer);\n}\nconst serializerDefault = function() {\n\treturn JSON.stringify(arguments);\n};\nvar ObjectWithoutPrototypeCache = class {\n\tconstructor() {\n\t\tthis.cache = Object.create(null);\n\t}\n\tget(key) {\n\t\treturn this.cache[key];\n\t}\n\tset(key, value) {\n\t\tthis.cache[key] = value;\n\t}\n};\nconst cacheDefault = { create: function create() {\n\treturn new ObjectWithoutPrototypeCache();\n} };\nconst strategies = {\n\tvariadic: strategyVariadic,\n\tmonadic: strategyMonadic\n};\n//#endregion\nexport { memoize, strategies };\n\n//# sourceMappingURL=index.js.map","import { memoize, strategies } from \"@formatjs/fast-memoize\";\nexport function repeat(s, times) {\n\tif (typeof s.repeat === \"function\") {\n\t\treturn s.repeat(times);\n\t}\n\tconst arr = Array.from({ length: times });\n\tfor (let i = 0; i < arr.length; i++) {\n\t\tarr[i] = s;\n\t}\n\treturn arr.join(\"\");\n}\nexport function setInternalSlot(map, pl, field, value) {\n\tif (!map.get(pl)) {\n\t\tmap.set(pl, Object.create(null));\n\t}\n\tconst slots = map.get(pl);\n\tslots[field] = value;\n}\nexport function setMultiInternalSlots(map, pl, props) {\n\tfor (const k of Object.keys(props)) {\n\t\tsetInternalSlot(map, pl, k, props[k]);\n\t}\n}\nexport function getInternalSlot(map, pl, field) {\n\treturn getMultiInternalSlots(map, pl, field)[field];\n}\nexport function getMultiInternalSlots(map, pl, ...fields) {\n\tconst slots = map.get(pl);\n\tif (!slots) {\n\t\tthrow new TypeError(`${pl} InternalSlot has not been initialized`);\n\t}\n\treturn fields.reduce((all, f) => {\n\t\tall[f] = slots[f];\n\t\treturn all;\n\t}, Object.create(null));\n}\nexport function isLiteralPart(patternPart) {\n\treturn patternPart.type === \"literal\";\n}\n/*\n17 ECMAScript Standard Built-in Objects:\nEvery built-in Function object, including constructors, that is not\nidentified as an anonymous function has a name property whose value\nis a String.\n\nUnless otherwise specified, the name property of a built-in Function\nobject, if it exists, has the attributes { [[Writable]]: false,\n[[Enumerable]]: false, [[Configurable]]: true }.\n*/\nexport function defineProperty(target, name, { value }) {\n\tObject.defineProperty(target, name, {\n\t\tconfigurable: true,\n\t\tenumerable: false,\n\t\twritable: true,\n\t\tvalue\n\t});\n}\n/**\n* 7.3.5 CreateDataProperty\n* @param target\n* @param name\n* @param value\n*/\nexport function createDataProperty(target, name, value) {\n\tObject.defineProperty(target, name, {\n\t\tconfigurable: true,\n\t\tenumerable: true,\n\t\twritable: true,\n\t\tvalue\n\t});\n}\nexport const UNICODE_EXTENSION_SEQUENCE_REGEX = /-u(?:-[0-9a-z]{2,8})+/gi;\nexport function invariant(condition, message, Err = Error) {\n\tif (!condition) {\n\t\tthrow new Err(message);\n\t}\n}\nexport const createMemoizedNumberFormat = memoize((...args) => new Intl.NumberFormat(...args), { strategy: strategies.variadic });\nexport const createMemoizedPluralRules = memoize((...args) => new Intl.PluralRules(...args), { strategy: strategies.variadic });\nexport const createMemoizedLocale = memoize((...args) => new Intl.Locale(...args), { strategy: strategies.variadic });\nexport const createMemoizedListFormat = memoize((...args) => new Intl.ListFormat(...args), { strategy: strategies.variadic });\n","import { CanonicalizeLocaleList } from \"#packages/ecma402-abstract/CanonicalizeLocaleList.js\";\nimport { CoerceOptionsToObject } from \"#packages/ecma402-abstract/CoerceOptionsToObject.js\";\nimport { GetOption } from \"#packages/ecma402-abstract/GetOption.js\";\nimport \"#packages/ecma402-abstract/types/relative-time.js\";\nimport { createMemoizedNumberFormat, createMemoizedPluralRules, invariant } from \"#packages/ecma402-abstract/utils.js\";\nimport { ResolveLocale } from \"@formatjs/intl-localematcher\";\nconst NUMBERING_SYSTEM_REGEX = /^[a-z0-9]{3,8}(-[a-z0-9]{3,8})*$/i;\nexport function InitializeRelativeTimeFormat(rtf, locales, options, { getInternalSlots, availableLocales, relevantExtensionKeys, localeData, getDefaultLocale }) {\n\tconst internalSlots = getInternalSlots(rtf);\n\tinternalSlots.initializedRelativeTimeFormat = true;\n\tconst requestedLocales = CanonicalizeLocaleList(locales);\n\tconst opt = Object.create(null);\n\tconst opts = CoerceOptionsToObject(options);\n\tconst matcher = GetOption(opts, \"localeMatcher\", \"string\", [\"best fit\", \"lookup\"], \"best fit\");\n\topt.localeMatcher = matcher;\n\tconst numberingSystem = GetOption(\n\t\topts,\n\t\t// @ts-expect-error TS option is wack\n\t\t\"numberingSystem\",\n\t\t\"string\",\n\t\tundefined,\n\t\tundefined\n\t);\n\tif (numberingSystem !== undefined) {\n\t\tif (!NUMBERING_SYSTEM_REGEX.test(numberingSystem)) {\n\t\t\tthrow new RangeError(`Invalid numbering system ${numberingSystem}`);\n\t\t}\n\t}\n\topt.nu = numberingSystem;\n\tconst r = ResolveLocale(availableLocales, requestedLocales, opt, relevantExtensionKeys, localeData, getDefaultLocale);\n\tconst { locale, nu } = r;\n\tinternalSlots.locale = locale;\n\tinternalSlots.style = GetOption(opts, \"style\", \"string\", [\n\t\t\"long\",\n\t\t\"narrow\",\n\t\t\"short\"\n\t], \"long\");\n\tinternalSlots.numeric = GetOption(opts, \"numeric\", \"string\", [\"always\", \"auto\"], \"always\");\n\tconst fields = localeData[r.dataLocale];\n\tinvariant(!!fields, `Missing locale data for ${r.dataLocale}`);\n\tinternalSlots.fields = fields;\n\tinternalSlots.numberFormat = createMemoizedNumberFormat(locales);\n\tinternalSlots.pluralRules = createMemoizedPluralRules(locales);\n\tinternalSlots.numberingSystem = nu;\n\treturn rtf;\n}\n","/**\n* https://www.ecma-international.org/ecma-262/11.0/index.html#sec-samevalue\n*/\nexport function SameValue(x, y) {\n\tif (Object.is) {\n\t\treturn Object.is(x, y);\n\t}\n\tif (x === y) {\n\t\treturn x !== 0 || 1 / x === 1 / y;\n\t}\n\treturn x !== x && y !== y;\n}\n","/**\n* https://www.ecma-international.org/ecma-262/11.0/index.html#sec-type\n*/\nexport function Type(x) {\n\tif (x === null) {\n\t\treturn \"Null\";\n\t}\n\tif (typeof x === \"undefined\") {\n\t\treturn \"Undefined\";\n\t}\n\tif (typeof x === \"function\" || typeof x === \"object\") {\n\t\treturn \"Object\";\n\t}\n\tif (typeof x === \"number\") {\n\t\treturn \"Number\";\n\t}\n\tif (typeof x === \"boolean\") {\n\t\treturn \"Boolean\";\n\t}\n\tif (typeof x === \"string\") {\n\t\treturn \"String\";\n\t}\n\tif (typeof x === \"symbol\") {\n\t\treturn \"Symbol\";\n\t}\n\tif (typeof x === \"bigint\") {\n\t\treturn \"BigInt\";\n\t}\n}\n","import { Type } from \"#packages/ecma262-abstract/Type.js\";\nimport \"#packages/ecma402-abstract/types/relative-time.js\";\nimport { invariant } from \"#packages/ecma402-abstract/utils.js\";\n/**\n* https://tc39.es/proposal-intl-relative-time/#sec-singularrelativetimeunit\n* @param unit\n*/\nexport function SingularRelativeTimeUnit(unit) {\n\tinvariant(Type(unit) === \"String\", \"unit must be a string\");\n\tif (unit === \"seconds\") return \"second\";\n\tif (unit === \"minutes\") return \"minute\";\n\tif (unit === \"hours\") return \"hour\";\n\tif (unit === \"days\") return \"day\";\n\tif (unit === \"weeks\") return \"week\";\n\tif (unit === \"months\") return \"month\";\n\tif (unit === \"quarters\") return \"quarter\";\n\tif (unit === \"years\") return \"year\";\n\tif (unit !== \"second\" && unit !== \"minute\" && unit !== \"hour\" && unit !== \"day\" && unit !== \"week\" && unit !== \"month\" && unit !== \"quarter\" && unit !== \"year\") {\n\t\tthrow new RangeError(\"invalid unit\");\n\t}\n\treturn unit;\n}\n","import { invariant } from \"#packages/ecma402-abstract/utils.js\";\n/**\n* Partition a pattern into a list of literals and placeholders\n* https://tc39.es/ecma402/#sec-partitionpattern\n* @param pattern\n*/\nexport function PartitionPattern(pattern) {\n\tconst result = [];\n\tlet beginIndex = pattern.indexOf(\"{\");\n\tlet endIndex = 0;\n\tlet nextIndex = 0;\n\tconst length = pattern.length;\n\twhile (beginIndex < pattern.length && beginIndex > -1) {\n\t\tendIndex = pattern.indexOf(\"}\", beginIndex);\n\t\tinvariant(endIndex > beginIndex, `Invalid pattern ${pattern}`);\n\t\tif (beginIndex > nextIndex) {\n\t\t\tresult.push({\n\t\t\t\ttype: \"literal\",\n\t\t\t\tvalue: pattern.substring(nextIndex, beginIndex)\n\t\t\t});\n\t\t}\n\t\tresult.push({\n\t\t\ttype: pattern.substring(beginIndex + 1, endIndex),\n\t\t\tvalue: undefined\n\t\t});\n\t\tnextIndex = endIndex + 1;\n\t\tbeginIndex = pattern.indexOf(\"{\", nextIndex);\n\t}\n\tif (nextIndex < length) {\n\t\tresult.push({\n\t\t\ttype: \"literal\",\n\t\t\tvalue: pattern.substring(nextIndex, length)\n\t\t});\n\t}\n\treturn result;\n}\n","import { PartitionPattern } from \"#packages/ecma402-abstract/PartitionPattern.js\";\nimport { invariant } from \"#packages/ecma402-abstract/utils.js\";\nexport function MakePartsList(pattern, unit, parts) {\n\tconst patternParts = PartitionPattern(pattern);\n\tconst result = [];\n\tfor (const patternPart of patternParts) {\n\t\tif (patternPart.type === \"literal\") {\n\t\t\tresult.push({\n\t\t\t\ttype: \"literal\",\n\t\t\t\tvalue: patternPart.value\n\t\t\t});\n\t\t} else {\n\t\t\tinvariant(patternPart.type === \"0\", `Malformed pattern ${pattern}`);\n\t\t\tfor (const part of parts) {\n\t\t\t\tresult.push({\n\t\t\t\t\ttype: part.type,\n\t\t\t\t\tvalue: part.value,\n\t\t\t\t\tunit\n\t\t\t\t});\n\t\t\t}\n\t\t}\n\t}\n\treturn result;\n}\n","import { SameValue } from \"#packages/ecma262-abstract/SameValue.js\";\nimport { ToString } from \"#packages/ecma262-abstract/ToString.js\";\nimport { Type } from \"#packages/ecma262-abstract/Type.js\";\nimport \"#packages/ecma402-abstract/types/plural-rules.js\";\nimport \"#packages/ecma402-abstract/types/relative-time.js\";\nimport { invariant } from \"#packages/ecma402-abstract/utils.js\";\nimport { SingularRelativeTimeUnit } from \"#packages/ecma402-abstract/RelativeTimeFormat/SingularRelativeTimeUnit.js\";\nimport { MakePartsList } from \"#packages/ecma402-abstract/RelativeTimeFormat/MakePartsList.js\";\nexport function PartitionRelativeTimePattern(rtf, value, unit, { getInternalSlots }) {\n\tinvariant(Type(value) === \"Number\", `value must be number, instead got ${typeof value}`, TypeError);\n\tinvariant(Type(unit) === \"String\", `unit must be number, instead got ${typeof value}`, TypeError);\n\tif (isNaN(value) || !isFinite(value)) {\n\t\tthrow new RangeError(`Invalid value ${value}`);\n\t}\n\tconst resolvedUnit = SingularRelativeTimeUnit(unit);\n\tconst { fields, style, numeric, pluralRules, numberFormat } = getInternalSlots(rtf);\n\tlet entry = resolvedUnit;\n\tif (style === \"short\") {\n\t\tentry = `${resolvedUnit}-short`;\n\t} else if (style === \"narrow\") {\n\t\tentry = `${resolvedUnit}-narrow`;\n\t}\n\tif (!(entry in fields)) {\n\t\tentry = resolvedUnit;\n\t}\n\tconst patterns = fields[entry];\n\tif (numeric === \"auto\") {\n\t\tif (ToString(value) in patterns) {\n\t\t\treturn [{\n\t\t\t\ttype: \"literal\",\n\t\t\t\tvalue: patterns[ToString(value)]\n\t\t\t}];\n\t\t}\n\t}\n\tlet tl = \"future\";\n\tif (SameValue(value, -0) || value < 0) {\n\t\ttl = \"past\";\n\t}\n\tconst po = patterns[tl];\n\tconst fv = typeof numberFormat.formatToParts === \"function\" ? numberFormat.formatToParts(Math.abs(value)) : \n\t// number is a part\n[{\n\t\ttype: \"literal\",\n\t\tvalue: numberFormat.format(Math.abs(value)),\n\t\tunit\n\t}];\n\tconst pr = pluralRules.select(value);\n\tconst pattern = po[pr];\n\treturn MakePartsList(pattern, resolvedUnit, fv);\n}\n","// Type-only circular import\n// eslint-disable-next-line import/no-cycle\n\nimport {type RelativeTimeFormatInternal} from '#packages/ecma402-abstract/types/relative-time.js'\n\nconst internalSlotMap = new WeakMap<\n Intl.RelativeTimeFormat,\n RelativeTimeFormatInternal\n>()\n\nexport default function getInternalSlots(\n x: Intl.RelativeTimeFormat\n): RelativeTimeFormatInternal {\n let internalSlots = internalSlotMap.get(x)\n if (!internalSlots) {\n internalSlots = Object.create(null) as RelativeTimeFormatInternal\n internalSlotMap.set(x, internalSlots)\n }\n return internalSlots\n}\n","import {ToString} from '#packages/ecma262-abstract/ToString.js'\nimport {CanonicalizeLocaleList} from '#packages/ecma402-abstract/CanonicalizeLocaleList.js'\nimport {SupportedLocales} from '#packages/ecma402-abstract/SupportedLocales.js'\nimport {\n type LocaleFieldsData,\n type RelativeTimeLocaleData,\n} from '#packages/ecma402-abstract/types/relative-time.js'\nimport {InitializeRelativeTimeFormat} from '#packages/ecma402-abstract/RelativeTimeFormat/InitializeRelativeTimeFormat.js'\nimport {PartitionRelativeTimePattern} from '#packages/ecma402-abstract/RelativeTimeFormat/PartitionRelativeTimePattern.js'\nimport getInternalSlots from '#packages/intl-relativetimeformat/get_internal_slots.js'\n\nexport default class RelativeTimeFormat {\n constructor(\n locales?: string | string[],\n options?: Intl.RelativeTimeFormatOptions\n ) {\n // test262/test/intl402/RelativeTimeFormat/constructor/constructor/newtarget-undefined.js\n // Cannot use `new.target` bc of IE11 & TS transpiles it to something else\n const newTarget =\n this && this instanceof RelativeTimeFormat ? this.constructor : void 0\n if (!newTarget) {\n throw new TypeError(\"Intl.RelativeTimeFormat must be called with 'new'\")\n }\n return InitializeRelativeTimeFormat(this, locales, options, {\n getInternalSlots,\n availableLocales: RelativeTimeFormat.availableLocales,\n relevantExtensionKeys: RelativeTimeFormat.relevantExtensionKeys,\n localeData: RelativeTimeFormat.localeData,\n getDefaultLocale: RelativeTimeFormat.getDefaultLocale,\n })\n }\n format(value: number, unit: Intl.RelativeTimeFormatUnit): string {\n if (typeof this !== 'object') {\n throw new TypeError('format was called on a non-object')\n }\n const internalSlots = getInternalSlots(this)\n if (!internalSlots.initializedRelativeTimeFormat) {\n throw new TypeError('format was called on a invalid context')\n }\n return PartitionRelativeTimePattern(\n this,\n Number(value),\n ToString(unit) as Intl.RelativeTimeFormatUnit,\n {\n getInternalSlots,\n }\n )\n .map(el => el.value)\n .join('')\n }\n formatToParts(\n value: number,\n unit: Intl.RelativeTimeFormatUnit\n ): Intl.RelativeTimeFormatPart[] {\n if (typeof this !== 'object') {\n throw new TypeError('formatToParts was called on a non-object')\n }\n const internalSlots = getInternalSlots(this)\n if (!internalSlots.initializedRelativeTimeFormat) {\n throw new TypeError('formatToParts was called on a invalid context')\n }\n return PartitionRelativeTimePattern(\n this,\n Number(value),\n ToString(unit) as Intl.RelativeTimeFormatUnit,\n {getInternalSlots}\n )\n }\n\n resolvedOptions(): Intl.ResolvedRelativeTimeFormatOptions {\n if (typeof this !== 'object') {\n throw new TypeError('resolvedOptions was called on a non-object')\n }\n const internalSlots = getInternalSlots(this)\n if (!internalSlots.initializedRelativeTimeFormat) {\n throw new TypeError('resolvedOptions was called on a invalid context')\n }\n\n // test262/test/intl402/RelativeTimeFormat/prototype/resolvedOptions/type.js\n return {\n locale: internalSlots.locale,\n style: internalSlots.style,\n numeric: internalSlots.numeric,\n numberingSystem: internalSlots.numberingSystem,\n }\n }\n\n public static supportedLocalesOf(\n locales: string | string[],\n options?: Pick<Intl.RelativeTimeFormatOptions, 'localeMatcher'>\n ): string[] {\n return SupportedLocales(\n RelativeTimeFormat.availableLocales,\n CanonicalizeLocaleList(locales),\n options\n )\n }\n\n public static __addLocaleData(...data: RelativeTimeLocaleData[]): void {\n for (const {data: d, locale} of data) {\n const minimizedLocale = new (Intl as any).Locale(locale)\n .minimize()\n .toString()\n RelativeTimeFormat.localeData[locale] = RelativeTimeFormat.localeData[\n minimizedLocale\n ] = d\n RelativeTimeFormat.availableLocales.add(minimizedLocale)\n RelativeTimeFormat.availableLocales.add(locale)\n if (!RelativeTimeFormat.__defaultLocale) {\n RelativeTimeFormat.__defaultLocale = minimizedLocale\n }\n }\n }\n static localeData: Record<string, LocaleFieldsData> = {}\n private static availableLocales = new Set<string>()\n private static __defaultLocale = ''\n private static getDefaultLocale() {\n return RelativeTimeFormat.__defaultLocale\n }\n private static relevantExtensionKeys = ['nu']\n public static polyfilled = true\n}\n\ntry {\n // IE11 does not have Symbol\n if (typeof Symbol !== 'undefined') {\n Object.defineProperty(RelativeTimeFormat.prototype, Symbol.toStringTag, {\n value: 'Intl.RelativeTimeFormat',\n writable: false,\n enumerable: false,\n configurable: true,\n })\n }\n\n // https://github.com/tc39/test262/blob/master/test/intl402/RelativeTimeFormat/constructor/length.js\n Object.defineProperty(RelativeTimeFormat.prototype.constructor, 'length', {\n value: 0,\n writable: false,\n enumerable: false,\n configurable: true,\n })\n // https://github.com/tc39/test262/blob/master/test/intl402/RelativeTimeFormat/constructor/supportedLocalesOf/length.js\n Object.defineProperty(RelativeTimeFormat.supportedLocalesOf, 'length', {\n value: 1,\n writable: false,\n enumerable: false,\n configurable: true,\n })\n} catch {\n // Meta fix so we're test262-compliant, not important\n}\n","export const supportedLocales = [\n\t\"af\",\n\t\"af-NA\",\n\t\"agq\",\n\t\"ak\",\n\t\"am\",\n\t\"ar\",\n\t\"ar-AE\",\n\t\"ar-BH\",\n\t\"ar-DJ\",\n\t\"ar-DZ\",\n\t\"ar-EG\",\n\t\"ar-EH\",\n\t\"ar-ER\",\n\t\"ar-IL\",\n\t\"ar-IQ\",\n\t\"ar-JO\",\n\t\"ar-KM\",\n\t\"ar-KW\",\n\t\"ar-LB\",\n\t\"ar-LY\",\n\t\"ar-MA\",\n\t\"ar-MR\",\n\t\"ar-OM\",\n\t\"ar-PS\",\n\t\"ar-QA\",\n\t\"ar-SA\",\n\t\"ar-SD\",\n\t\"ar-SO\",\n\t\"ar-SS\",\n\t\"ar-SY\",\n\t\"ar-TD\",\n\t\"ar-TN\",\n\t\"ar-YE\",\n\t\"as\",\n\t\"asa\",\n\t\"ast\",\n\t\"az\",\n\t\"az-Cyrl\",\n\t\"az-Latn\",\n\t\"bas\",\n\t\"be\",\n\t\"be-tarask\",\n\t\"bem\",\n\t\"bez\",\n\t\"bg\",\n\t\"bm\",\n\t\"bn\",\n\t\"bn-IN\",\n\t\"bo\",\n\t\"bo-IN\",\n\t\"br\",\n\t\"brx\",\n\t\"bs\",\n\t\"bs-Cyrl\",\n\t\"bs-Latn\",\n\t\"ca\",\n\t\"ca-AD\",\n\t\"ca-ES-valencia\",\n\t\"ca-FR\",\n\t\"ca-IT\",\n\t\"ccp\",\n\t\"ccp-IN\",\n\t\"ce\",\n\t\"ceb\",\n\t\"cgg\",\n\t\"chr\",\n\t\"ckb\",\n\t\"ckb-IR\",\n\t\"cs\",\n\t\"cy\",\n\t\"da\",\n\t\"da-GL\",\n\t\"dav\",\n\t\"de\",\n\t\"de-AT\",\n\t\"de-BE\",\n\t\"de-CH\",\n\t\"de-IT\",\n\t\"de-LI\",\n\t\"de-LU\",\n\t\"dje\",\n\t\"doi\",\n\t\"dsb\",\n\t\"dua\",\n\t\"dyo\",\n\t\"dz\",\n\t\"ebu\",\n\t\"ee\",\n\t\"ee-TG\",\n\t\"el\",\n\t\"el-CY\",\n\t\"en\",\n\t\"en-001\",\n\t\"en-150\",\n\t\"en-AE\",\n\t\"en-AG\",\n\t\"en-AI\",\n\t\"en-AS\",\n\t\"en-AT\",\n\t\"en-AU\",\n\t\"en-BB\",\n\t\"en-BE\",\n\t\"en-BI\",\n\t\"en-BM\",\n\t\"en-BS\",\n\t\"en-BW\",\n\t\"en-BZ\",\n\t\"en-CA\",\n\t\"en-CC\",\n\t\"en-CH\",\n\t\"en-CK\",\n\t\"en-CM\",\n\t\"en-CX\",\n\t\"en-CY\",\n\t\"en-DE\",\n\t\"en-DG\",\n\t\"en-DK\",\n\t\"en-DM\",\n\t\"en-ER\",\n\t\"en-FI\",\n\t\"en-FJ\",\n\t\"en-FK\",\n\t\"en-FM\",\n\t\"en-GB\",\n\t\"en-GD\",\n\t\"en-GG\",\n\t\"en-GH\",\n\t\"en-GI\",\n\t\"en-GM\",\n\t\"en-GU\",\n\t\"en-GY\",\n\t\"en-HK\",\n\t\"en-IE\",\n\t\"en-IL\",\n\t\"en-IM\",\n\t\"en-IN\",\n\t\"en-IO\",\n\t\"en-JE\",\n\t\"en-JM\",\n\t\"en-KE\",\n\t\"en-KI\",\n\t\"en-KN\",\n\t\"en-KY\",\n\t\"en-LC\",\n\t\"en-LR\",\n\t\"en-LS\",\n\t\"en-MG\",\n\t\"en-MH\",\n\t\"en-MO\",\n\t\"en-MP\",\n\t\"en-MS\",\n\t\"en-MT\",\n\t\"en-MU\",\n\t\"en-MW\",\n\t\"en-MY\",\n\t\"en-NA\",\n\t\"en-NF\",\n\t\"en-NG\",\n\t\"en-NL\",\n\t\"en-NR\",\n\t\"en-NU\",\n\t\"en-NZ\",\n\t\"en-PG\",\n\t\"en-PH\",\n\t\"en-PK\",\n\t\"en-PN\",\n\t\"en-PR\",\n\t\"en-PW\",\n\t\"en-RW\",\n\t\"en-SB\",\n\t\"en-SC\",\n\t\"en-SD\",\n\t\"en-SE\",\n\t\"en-SG\",\n\t\"en-SH\",\n\t\"en-SI\",\n\t\"en-SL\",\n\t\"en-SS\",\n\t\"en-SX\",\n\t\"en-SZ\",\n\t\"en-TC\",\n\t\"en-TK\",\n\t\"en-TO\",\n\t\"en-TT\",\n\t\"en-TV\",\n\t\"en-TZ\",\n\t\"en-UG\",\n\t\"en-UM\",\n\t\"en-VC\",\n\t\"en-VG\",\n\t\"en-VI\",\n\t\"en-VU\",\n\t\"en-WS\",\n\t\"en-ZA\",\n\t\"en-ZM\",\n\t\"en-ZW\",\n\t\"eo\",\n\t\"es\",\n\t\"es-419\",\n\t\"es-AR\",\n\t\"es-BO\",\n\t\"es-BR\",\n\t\"es-BZ\",\n\t\"es-CL\",\n\t\"es-CO\",\n\t\"es-CR\",\n\t\"es-CU\",\n\t\"es-DO\",\n\t\"es-EA\",\n\t\"es-EC\",\n\t\"es-GQ\",\n\t\"es-GT\",\n\t\"es-HN\",\n\t\"es-IC\",\n\t\"es-MX\",\n\t\"es-NI\",\n\t\"es-PA\",\n\t\"es-PE\",\n\t\"es-PH\",\n\t\"es-PR\",\n\t\"es-PY\",\n\t\"es-SV\",\n\t\"es-US\",\n\t\"es-UY\",\n\t\"es-VE\",\n\t\"et\",\n\t\"eu\",\n\t\"ewo\",\n\t\"fa\",\n\t\"fa-AF\",\n\t\"ff\",\n\t\"ff-Adlm\",\n\t\"ff-Adlm-BF\",\n\t\"ff-Adlm-CM\",\n\t\"ff-Adlm-GH\",\n\t\"ff-Adlm-GM\",\n\t\"ff-Adlm-GW\",\n\t\"ff-Adlm-LR\",\n\t\"ff-Adlm-MR\",\n\t\"ff-Adlm-NE\",\n\t\"ff-Adlm-NG\",\n\t\"ff-Adlm-SL\",\n\t\"ff-Adlm-SN\",\n\t\"ff-Latn\",\n\t\"ff-Latn-BF\",\n\t\"ff-Latn-CM\",\n\t\"ff-Latn-GH\",\n\t\"ff-Latn-GM\",\n\t\"ff-Latn-GN\",\n\t\"ff-Latn-GW\",\n\t\"ff-Latn-LR\",\n\t\"ff-Latn-MR\",\n\t\"ff-Latn-NE\",\n\t\"ff-Latn-NG\",\n\t\"ff-Latn-SL\",\n\t\"fi\",\n\t\"fil\",\n\t\"fo\",\n\t\"fo-DK\",\n\t\"fr\",\n\t\"fr-BE\",\n\t\"fr-BF\",\n\t\"fr-BI\",\n\t\"fr-BJ\",\n\t\"fr-BL\",\n\t\"fr-CA\",\n\t\"fr-CD\",\n\t\"fr-CF\",\n\t\"fr-CG\",\n\t\"fr-CH\",\n\t\"fr-CI\",\n\t\"fr-CM\",\n\t\"fr-DJ\",\n\t\"fr-DZ\",\n\t\"fr-GA\",\n\t\"fr-GF\",\n\t\"fr-GN\",\n\t\"fr-GP\",\n\t\"fr-GQ\",\n\t\"fr-HT\",\n\t\"fr-KM\",\n\t\"fr-LU\",\n\t\"fr-MA\",\n\t\"fr-MC\",\n\t\"fr-MF\",\n\t\"fr-MG\",\n\t\"fr-ML\",\n\t\"fr-MQ\",\n\t\"fr-MR\",\n\t\"fr-MU\",\n\t\"fr-NC\",\n\t\"fr-NE\",\n\t\"fr-PF\",\n\t\"fr-PM\",\n\t\"fr-RE\",\n\t\"fr-RW\",\n\t\"fr-SC\",\n\t\"fr-SN\",\n\t\"fr-SY\",\n\t\"fr-TD\",\n\t\"fr-TG\",\n\t\"fr-TN\",\n\t\"fr-VU\",\n\t\"fr-WF\",\n\t\"fr-YT\",\n\t\"fur\",\n\t\"fy\",\n\t\"ga\",\n\t\"ga-GB\",\n\t\"gd\",\n\t\"gl\",\n\t\"gsw\",\n\t\"gsw-FR\",\n\t\"gsw-LI\",\n\t\"gu\",\n\t\"guz\",\n\t\"gv\",\n\t\"ha\",\n\t\"ha-GH\",\n\t\"ha-NE\",\n\t\"haw\",\n\t\"he\",\n\t\"hi\",\n\t\"hr\",\n\t\"hr-BA\",\n\t\"hsb\",\n\t\"hu\",\n\t\"hy\",\n\t\"ia\",\n\t\"id\",\n\t\"ig\",\n\t\"ii\",\n\t\"is\",\n\t\"it\",\n\t\"it-CH\",\n\t\"it-SM\",\n\t\"it-VA\",\n\t\"ja\",\n\t\"jgo\",\n\t\"jmc\",\n\t\"jv\",\n\t\"ka\",\n\t\"kab\",\n\t\"kam\",\n\t\"kde\",\n\t\"kea\",\n\t\"kgp\",\n\t\"khq\",\n\t\"ki\",\n\t\"kk\",\n\t\"kkj\",\n\t\"kl\",\n\t\"kln\",\n\t\"km\",\n\t\"kn\",\n\t\"ko\",\n\t\"ko-KP\",\n\t\"kok\",\n\t\"ks\",\n\t\"ks-Arab\",\n\t\"ksb\",\n\t\"ksf\",\n\t\"ksh\",\n\t\"ku\",\n\t\"kw\",\n\t\"ky\",\n\t\"lag\",\n\t\"lb\",\n\t\"lg\",\n\t\"lkt\",\n\t\"ln\",\n\t\"ln-AO\",\n\t\"ln-CF\",\n\t\"ln-CG\",\n\t\"lo\",\n\t\"lrc\",\n\t\"lrc-IQ\",\n\t\"lt\",\n\t\"lu\",\n\t\"luo\",\n\t\"luy\",\n\t\"lv\",\n\t\"mai\",\n\t\"mas\",\n\t\"mas-TZ\",\n\t\"mer\",\n\t\"mfe\",\n\t\"mg\",\n\t\"mgh\",\n\t\"mgo\",\n\t\"mi\",\n\t\"mk\",\n\t\"ml\",\n\t\"mn\",\n\t\"mni\",\n\t\"mni-Beng\",\n\t\"mr\",\n\t\"ms\",\n\t\"ms-BN\",\n\t\"ms-ID\",\n\t\"ms-SG\",\n\t\"mt\",\n\t\"mua\",\n\t\"my\",\n\t\"mzn\",\n\t\"naq\",\n\t\"nb\",\n\t\"nb-SJ\",\n\t\"nd\",\n\t\"nds\",\n\t\"nds-NL\",\n\t\"ne\",\n\t\"ne-IN\",\n\t\"nl\",\n\t\"nl-AW\",\n\t\"nl-BE\",\n\t\"nl-BQ\",\n\t\"nl-CW\",\n\t\"nl-SR\",\n\t\"nl-SX\",\n\t\"nmg\",\n\t\"nn\",\n\t\"nnh\",\n\t\"no\",\n\t\"nus\",\n\t\"nyn\",\n\t\"om\",\n\t\"om-KE\",\n\t\"or\",\n\t\"os\",\n\t\"os-RU\",\n\t\"pa\",\n\t\"pa-Arab\",\n\t\"pa-Guru\",\n\t\"pcm\",\n\t\"pl\",\n\t\"ps\",\n\t\"ps-PK\",\n\t\"pt\",\n\t\"pt-AO\",\n\t\"pt-CH\",\n\t\"pt-CV\",\n\t\"pt-GQ\",\n\t\"pt-GW\",\n\t\"pt-LU\",\n\t\"pt-MO\",\n\t\"pt-MZ\",\n\t\"pt-PT\",\n\t\"pt-ST\",\n\t\"pt-TL\",\n\t\"qu\",\n\t\"qu-BO\",\n\t\"qu-EC\",\n\t\"rm\",\n\t\"rn\",\n\t\"ro\",\n\t\"ro-MD\",\n\t\"rof\",\n\t\"ru\",\n\t\"ru-BY\",\n\t\"ru-KG\",\n\t\"ru-KZ\",\n\t\"ru-MD\",\n\t\"ru-UA\",\n\t\"rw\",\n\t\"rwk\",\n\t\"sa\",\n\t\"sah\",\n\t\"saq\",\n\t\"sat\",\n\t\"sat-Olck\",\n\t\"sbp\",\n\t\"sc\",\n\t\"sd\",\n\t\"sd-Arab\",\n\t\"sd-Deva\",\n\t\"se\",\n\t\"se-FI\",\n\t\"se-SE\",\n\t\"seh\",\n\t\"ses\",\n\t\"sg\",\n\t\"shi\",\n\t\"shi-Latn\",\n\t\"shi-Tfng\",\n\t\"si\",\n\t\"sk\",\n\t\"sl\",\n\t\"smn\",\n\t\"sn\",\n\t\"so\",\n\t\"so-DJ\",\n\t\"so-ET\",\n\t\"so-KE\",\n\t\"sq\",\n\t\"sq-MK\",\n\t\"sq-XK\",\n\t\"sr\",\n\t\"sr-Cyrl\",\n\t\"sr-Cyrl-BA\",\n\t\"sr-Cyrl-ME\",\n\t\"sr-Cyrl-XK\",\n\t\"sr-Latn\",\n\t\"sr-Latn-BA\",\n\t\"sr-Latn-ME\",\n\t\"sr-Latn-XK\",\n\t\"su\",\n\t\"su-Latn\",\n\t\"sv\",\n\t\"sv-AX\",\n\t\"sv-FI\",\n\t\"sw\",\n\t\"sw-CD\",\n\t\"sw-KE\",\n\t\"sw-UG\",\n\t\"ta\",\n\t\"ta-LK\",\n\t\"ta-MY\",\n\t\"ta-SG\",\n\t\"te\",\n\t\"teo\",\n\t\"teo-KE\",\n\t\"tg\",\n\t\"th\",\n\t\"ti\",\n\t\"ti-ER\",\n\t\"tk\",\n\t\"to\",\n\t\"tr\",\n\t\"tr-CY\",\n\t\"tt\",\n\t\"twq\",\n\t\"tzm\",\n\t\"ug\",\n\t\"uk\",\n\t\"und\",\n\t\"ur\",\n\t\"ur-IN\",\n\t\"uz\",\n\t\"uz-Arab\",\n\t\"uz-Cyrl\",\n\t\"uz-Latn\",\n\t\"vai\",\n\t\"vai-Latn\",\n\t\"vai-Vaii\",\n\t\"vi\",\n\t\"vun\",\n\t\"wae\",\n\t\"wo\",\n\t\"xh\",\n\t\"xog\",\n\t\"yav\",\n\t\"yi\",\n\t\"yo\",\n\t\"yo-BJ\",\n\t\"yrl\",\n\t\"yrl-CO\",\n\t\"yrl-VE\",\n\t\"yue\",\n\t\"yue-Hans\",\n\t\"yue-Hant\",\n\t\"zgh\",\n\t\"zh\",\n\t\"zh-Hans\",\n\t\"zh-Hans-HK\",\n\t\"zh-Hans-MO\",\n\t\"zh-Hans-SG\",\n\t\"zh-Hant\",\n\t\"zh-Hant-HK\",\n\t\"zh-Hant-MO\",\n\t\"zu\"\n];\n","import {match} from '@formatjs/intl-localematcher'\nimport {supportedLocales} from '@formatjs_generated/cldr.supported-locales/intl-relativetimeformat.js'\n\nfunction supportedLocalesOf(locale?: string | string[]) {\n if (!locale) {\n return true\n }\n const locales = Array.isArray(locale) ? locale : [locale]\n return (\n Intl.RelativeTimeFormat.supportedLocalesOf(locales).length ===\n locales.length\n )\n}\n\nfunction hasResolvedOptionsNumberingSystem(locale?: string | string[]) {\n try {\n return (\n 'numberingSystem' in\n new Intl.RelativeTimeFormat(locale || 'en', {\n numeric: 'auto',\n }).resolvedOptions()\n )\n } catch {\n return false\n }\n}\n\nexport function shouldPolyfill(locale = 'en'): string | undefined {\n if (\n !('RelativeTimeFormat' in Intl) ||\n !supportedLocalesOf(locale) ||\n !hasResolvedOptionsNumberingSystem(locale)\n ) {\n return match([locale], supportedLocales, 'en')\n }\n}\n","import RelativeTimeFormat from '#packages/intl-relativetimeformat/index.js'\nimport {shouldPolyfill} from '#packages/intl-relativetimeformat/should-polyfill.js'\nif (shouldPolyfill()) {\n Object.defineProperty(Intl, 'RelativeTimeFormat', {\n value: RelativeTimeFormat,\n writable: true,\n enumerable: false,\n configurable: true,\n })\n\n // Drain any locale data that was buffered before polyfill loaded\n const buf = (globalThis as Record<string, unknown>)\n .__FORMATJS_RELATIVETIMEFORMAT_DATA__ as\n | Parameters<(typeof RelativeTimeFormat)['__addLocaleData']>[0][]\n | undefined\n if (buf) {\n for (const d of buf) RelativeTimeFormat.__addLocaleData(d)\n delete (globalThis as Record<string, unknown>)\n .__FORMATJS_RELATIVETIMEFORMAT_DATA__\n }\n}\n"],"x_google_ignoreList":[6,17],"mappings":"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;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;;;ACzjBD,SAAS,mBAAmB,QAA4B;AACtD,KAAI,CAAC,OACH,QAAO;CAET,MAAM,UAAU,MAAM,QAAQ,OAAO,GAAG,SAAS,CAAC,OAAO;AACzD,QACE,KAAK,mBAAmB,mBAAmB,QAAQ,CAAC,WACpD,QAAQ;;AAIZ,SAAS,kCAAkC,QAA4B;AACrE,KAAI;AACF,SACE,qBACA,IAAI,KAAK,mBAAmB,UAAU,MAAM,EAC1C,SAAS,QACV,CAAC,CAAC,iBAAiB;SAEhB;AACN,SAAO;;;AAIX,SAAgB,eAAe,SAAS,MAA0B;AAChE,KACE,EAAE,wBAAwB,SAC1B,CAAC,mBAAmB,OAAO,IAC3B,CAAC,kCAAkC,OAAO,CAE1C,QAAO,MAAM,CAAC,OAAO,EAAE,kBAAkB,KAAK;;;;AC/BlD,IAAI,gBAAgB,EAAE;AACpB,QAAO,eAAe,MAAM,sBAAsB;EAChD,OAAO;EACP,UAAU;EACV,YAAY;EACZ,cAAc;EACf,CAAC;CAGF,MAAM,MAAO,WACV;AAGH,KAAI,KAAK;AACP,OAAK,MAAM,KAAK,IAAK,oBAAmB,gBAAgB,EAAE;AAC1D,SAAQ,WACL"}
|
package/should-polyfill.d.ts
CHANGED
|
@@ -1 +1,5 @@
|
|
|
1
|
-
|
|
1
|
+
//#region packages/intl-relativetimeformat/should-polyfill.d.ts
|
|
2
|
+
declare function shouldPolyfill(locale?: string): string | undefined;
|
|
3
|
+
//#endregion
|
|
4
|
+
export { shouldPolyfill };
|
|
5
|
+
//# sourceMappingURL=should-polyfill.d.ts.map
|