@formatjs/intl-relativetimeformat 9.2.3 → 9.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/abstract/FormatRelativeTime.js +1 -1
- package/abstract/FormatRelativeTimeToParts.js +2 -2
- package/abstract/InitializeRelativeTimeFormat.js +9 -9
- package/abstract/MakePartsList.js +2 -2
- package/abstract/PartitionRelativeTimePattern.js +10 -10
- package/abstract/SingularRelativeTimeUnit.js +1 -1
- package/index.js +8 -8
- package/lib/abstract/InitializeRelativeTimeFormat.js +2 -2
- package/lib/abstract/MakePartsList.js +1 -1
- package/lib/abstract/PartitionRelativeTimePattern.js +5 -5
- package/lib/should-polyfill.d.ts.map +1 -1
- package/lib/should-polyfill.js +14 -1
- package/package.json +3 -3
- package/polyfill-force.js +1 -1
- package/polyfill.iife.js +61 -52
- package/polyfill.js +2 -2
- package/should-polyfill.d.ts.map +1 -1
- package/should-polyfill.js +14 -1
|
@@ -3,7 +3,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.FormatRelativeTime = void 0;
|
|
4
4
|
var PartitionRelativeTimePattern_1 = require("./PartitionRelativeTimePattern");
|
|
5
5
|
function FormatRelativeTime(rtf, value, unit, implDetails) {
|
|
6
|
-
var parts = PartitionRelativeTimePattern_1.PartitionRelativeTimePattern(rtf, value, unit, implDetails);
|
|
6
|
+
var parts = (0, PartitionRelativeTimePattern_1.PartitionRelativeTimePattern)(rtf, value, unit, implDetails);
|
|
7
7
|
var result = '';
|
|
8
8
|
for (var _i = 0, parts_1 = parts; _i < parts_1.length; _i++) {
|
|
9
9
|
var part = parts_1[_i];
|
|
@@ -4,8 +4,8 @@ exports.FormatRelativeTimeToParts = void 0;
|
|
|
4
4
|
var ecma402_abstract_1 = require("@formatjs/ecma402-abstract");
|
|
5
5
|
var PartitionRelativeTimePattern_1 = require("./PartitionRelativeTimePattern");
|
|
6
6
|
function FormatRelativeTimeToParts(rtf, value, unit, implDetails) {
|
|
7
|
-
var parts = PartitionRelativeTimePattern_1.PartitionRelativeTimePattern(rtf, value, unit, implDetails);
|
|
8
|
-
var result = ecma402_abstract_1.ArrayCreate(0);
|
|
7
|
+
var parts = (0, PartitionRelativeTimePattern_1.PartitionRelativeTimePattern)(rtf, value, unit, implDetails);
|
|
8
|
+
var result = (0, ecma402_abstract_1.ArrayCreate)(0);
|
|
9
9
|
for (var _i = 0, parts_1 = parts; _i < parts_1.length; _i++) {
|
|
10
10
|
var part = parts_1[_i];
|
|
11
11
|
var o = {
|
|
@@ -8,27 +8,27 @@ function InitializeRelativeTimeFormat(rtf, locales, options, _a) {
|
|
|
8
8
|
var getInternalSlots = _a.getInternalSlots, availableLocales = _a.availableLocales, relevantExtensionKeys = _a.relevantExtensionKeys, localeData = _a.localeData, getDefaultLocale = _a.getDefaultLocale;
|
|
9
9
|
var internalSlots = getInternalSlots(rtf);
|
|
10
10
|
internalSlots.initializedRelativeTimeFormat = true;
|
|
11
|
-
var requestedLocales = ecma402_abstract_1.CanonicalizeLocaleList(locales);
|
|
11
|
+
var requestedLocales = (0, ecma402_abstract_1.CanonicalizeLocaleList)(locales);
|
|
12
12
|
var opt = Object.create(null);
|
|
13
|
-
var opts = ecma402_abstract_1.CoerceOptionsToObject(options);
|
|
14
|
-
var matcher = ecma402_abstract_1.GetOption(opts, 'localeMatcher', 'string', ['best fit', 'lookup'], 'best fit');
|
|
13
|
+
var opts = (0, ecma402_abstract_1.CoerceOptionsToObject)(options);
|
|
14
|
+
var matcher = (0, ecma402_abstract_1.GetOption)(opts, 'localeMatcher', 'string', ['best fit', 'lookup'], 'best fit');
|
|
15
15
|
opt.localeMatcher = matcher;
|
|
16
|
-
var numberingSystem = ecma402_abstract_1.GetOption(opts,
|
|
16
|
+
var numberingSystem = (0, ecma402_abstract_1.GetOption)(opts,
|
|
17
17
|
// @ts-expect-error TS option is wack
|
|
18
18
|
'numberingSystem', 'string', undefined, undefined);
|
|
19
19
|
if (numberingSystem !== undefined) {
|
|
20
20
|
if (!NUMBERING_SYSTEM_REGEX.test(numberingSystem)) {
|
|
21
|
-
throw new RangeError("Invalid numbering system "
|
|
21
|
+
throw new RangeError("Invalid numbering system ".concat(numberingSystem));
|
|
22
22
|
}
|
|
23
23
|
}
|
|
24
24
|
opt.nu = numberingSystem;
|
|
25
|
-
var r = intl_localematcher_1.ResolveLocale(availableLocales, requestedLocales, opt, relevantExtensionKeys, localeData, getDefaultLocale);
|
|
25
|
+
var r = (0, intl_localematcher_1.ResolveLocale)(availableLocales, requestedLocales, opt, relevantExtensionKeys, localeData, getDefaultLocale);
|
|
26
26
|
var locale = r.locale, nu = r.nu;
|
|
27
27
|
internalSlots.locale = locale;
|
|
28
|
-
internalSlots.style = ecma402_abstract_1.GetOption(opts, 'style', 'string', ['long', 'narrow', 'short'], 'long');
|
|
29
|
-
internalSlots.numeric = ecma402_abstract_1.GetOption(opts, 'numeric', 'string', ['always', 'auto'], 'always');
|
|
28
|
+
internalSlots.style = (0, ecma402_abstract_1.GetOption)(opts, 'style', 'string', ['long', 'narrow', 'short'], 'long');
|
|
29
|
+
internalSlots.numeric = (0, ecma402_abstract_1.GetOption)(opts, 'numeric', 'string', ['always', 'auto'], 'always');
|
|
30
30
|
var fields = localeData[r.dataLocale];
|
|
31
|
-
ecma402_abstract_1.invariant(!!fields, "Missing locale data for "
|
|
31
|
+
(0, ecma402_abstract_1.invariant)(!!fields, "Missing locale data for ".concat(r.dataLocale));
|
|
32
32
|
internalSlots.fields = fields;
|
|
33
33
|
internalSlots.numberFormat = new Intl.NumberFormat(locales);
|
|
34
34
|
internalSlots.pluralRules = new Intl.PluralRules(locales);
|
|
@@ -3,7 +3,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.MakePartsList = void 0;
|
|
4
4
|
var ecma402_abstract_1 = require("@formatjs/ecma402-abstract");
|
|
5
5
|
function MakePartsList(pattern, unit, parts) {
|
|
6
|
-
var patternParts = ecma402_abstract_1.PartitionPattern(pattern);
|
|
6
|
+
var patternParts = (0, ecma402_abstract_1.PartitionPattern)(pattern);
|
|
7
7
|
var result = [];
|
|
8
8
|
for (var _i = 0, patternParts_1 = patternParts; _i < patternParts_1.length; _i++) {
|
|
9
9
|
var patternPart = patternParts_1[_i];
|
|
@@ -14,7 +14,7 @@ function MakePartsList(pattern, unit, parts) {
|
|
|
14
14
|
});
|
|
15
15
|
}
|
|
16
16
|
else {
|
|
17
|
-
ecma402_abstract_1.invariant(patternPart.type === '0', "Malformed pattern "
|
|
17
|
+
(0, ecma402_abstract_1.invariant)(patternPart.type === '0', "Malformed pattern ".concat(pattern));
|
|
18
18
|
for (var _a = 0, parts_1 = parts; _a < parts_1.length; _a++) {
|
|
19
19
|
var part = parts_1[_a];
|
|
20
20
|
result.push({
|
|
@@ -6,36 +6,36 @@ var SingularRelativeTimeUnit_1 = require("./SingularRelativeTimeUnit");
|
|
|
6
6
|
var MakePartsList_1 = require("./MakePartsList");
|
|
7
7
|
function PartitionRelativeTimePattern(rtf, value, unit, _a) {
|
|
8
8
|
var getInternalSlots = _a.getInternalSlots;
|
|
9
|
-
ecma402_abstract_1.invariant(ecma402_abstract_1.Type(value) === 'Number', "value must be number, instead got "
|
|
10
|
-
ecma402_abstract_1.invariant(ecma402_abstract_1.Type(unit) === 'String', "unit must be number, instead got "
|
|
9
|
+
(0, ecma402_abstract_1.invariant)((0, ecma402_abstract_1.Type)(value) === 'Number', "value must be number, instead got ".concat(typeof value), TypeError);
|
|
10
|
+
(0, ecma402_abstract_1.invariant)((0, ecma402_abstract_1.Type)(unit) === 'String', "unit must be number, instead got ".concat(typeof value), TypeError);
|
|
11
11
|
if (isNaN(value) || !isFinite(value)) {
|
|
12
|
-
throw new RangeError("Invalid value "
|
|
12
|
+
throw new RangeError("Invalid value ".concat(value));
|
|
13
13
|
}
|
|
14
|
-
var resolvedUnit = SingularRelativeTimeUnit_1.SingularRelativeTimeUnit(unit);
|
|
14
|
+
var resolvedUnit = (0, SingularRelativeTimeUnit_1.SingularRelativeTimeUnit)(unit);
|
|
15
15
|
var _b = getInternalSlots(rtf), fields = _b.fields, style = _b.style, numeric = _b.numeric, pluralRules = _b.pluralRules, numberFormat = _b.numberFormat;
|
|
16
16
|
var entry = resolvedUnit;
|
|
17
17
|
if (style === 'short') {
|
|
18
|
-
entry = resolvedUnit
|
|
18
|
+
entry = "".concat(resolvedUnit, "-short");
|
|
19
19
|
}
|
|
20
20
|
else if (style === 'narrow') {
|
|
21
|
-
entry = resolvedUnit
|
|
21
|
+
entry = "".concat(resolvedUnit, "-narrow");
|
|
22
22
|
}
|
|
23
23
|
if (!(entry in fields)) {
|
|
24
24
|
entry = resolvedUnit;
|
|
25
25
|
}
|
|
26
26
|
var patterns = fields[entry];
|
|
27
27
|
if (numeric === 'auto') {
|
|
28
|
-
if (ecma402_abstract_1.ToString(value) in patterns) {
|
|
28
|
+
if ((0, ecma402_abstract_1.ToString)(value) in patterns) {
|
|
29
29
|
return [
|
|
30
30
|
{
|
|
31
31
|
type: 'literal',
|
|
32
|
-
value: patterns[ecma402_abstract_1.ToString(value)],
|
|
32
|
+
value: patterns[(0, ecma402_abstract_1.ToString)(value)],
|
|
33
33
|
},
|
|
34
34
|
];
|
|
35
35
|
}
|
|
36
36
|
}
|
|
37
37
|
var tl = 'future';
|
|
38
|
-
if (ecma402_abstract_1.SameValue(value, -0) || value < 0) {
|
|
38
|
+
if ((0, ecma402_abstract_1.SameValue)(value, -0) || value < 0) {
|
|
39
39
|
tl = 'past';
|
|
40
40
|
}
|
|
41
41
|
var po = patterns[tl];
|
|
@@ -52,6 +52,6 @@ function PartitionRelativeTimePattern(rtf, value, unit, _a) {
|
|
|
52
52
|
];
|
|
53
53
|
var pr = pluralRules.select(value);
|
|
54
54
|
var pattern = po[pr];
|
|
55
|
-
return MakePartsList_1.MakePartsList(pattern, resolvedUnit, fv);
|
|
55
|
+
return (0, MakePartsList_1.MakePartsList)(pattern, resolvedUnit, fv);
|
|
56
56
|
}
|
|
57
57
|
exports.PartitionRelativeTimePattern = PartitionRelativeTimePattern;
|
|
@@ -7,7 +7,7 @@ var ecma402_abstract_1 = require("@formatjs/ecma402-abstract");
|
|
|
7
7
|
* @param unit
|
|
8
8
|
*/
|
|
9
9
|
function SingularRelativeTimeUnit(unit) {
|
|
10
|
-
ecma402_abstract_1.invariant(ecma402_abstract_1.Type(unit) === 'String', 'unit must be a string');
|
|
10
|
+
(0, ecma402_abstract_1.invariant)((0, ecma402_abstract_1.Type)(unit) === 'String', 'unit must be a string');
|
|
11
11
|
if (unit === 'seconds')
|
|
12
12
|
return 'second';
|
|
13
13
|
if (unit === 'minutes')
|
package/index.js
CHANGED
|
@@ -4,7 +4,7 @@ var tslib_1 = require("tslib");
|
|
|
4
4
|
var ecma402_abstract_1 = require("@formatjs/ecma402-abstract");
|
|
5
5
|
var InitializeRelativeTimeFormat_1 = require("./abstract/InitializeRelativeTimeFormat");
|
|
6
6
|
var PartitionRelativeTimePattern_1 = require("./abstract/PartitionRelativeTimePattern");
|
|
7
|
-
var get_internal_slots_1 = tslib_1.__importDefault(require("./get_internal_slots"));
|
|
7
|
+
var get_internal_slots_1 = (0, tslib_1.__importDefault)(require("./get_internal_slots"));
|
|
8
8
|
var RelativeTimeFormat = /** @class */ (function () {
|
|
9
9
|
function RelativeTimeFormat(locales, options) {
|
|
10
10
|
// test262/test/intl402/RelativeTimeFormat/constructor/constructor/newtarget-undefined.js
|
|
@@ -13,7 +13,7 @@ var RelativeTimeFormat = /** @class */ (function () {
|
|
|
13
13
|
if (!newTarget) {
|
|
14
14
|
throw new TypeError("Intl.RelativeTimeFormat must be called with 'new'");
|
|
15
15
|
}
|
|
16
|
-
return InitializeRelativeTimeFormat_1.InitializeRelativeTimeFormat(this, locales, options, {
|
|
16
|
+
return (0, InitializeRelativeTimeFormat_1.InitializeRelativeTimeFormat)(this, locales, options, {
|
|
17
17
|
getInternalSlots: get_internal_slots_1.default,
|
|
18
18
|
availableLocales: RelativeTimeFormat.availableLocales,
|
|
19
19
|
relevantExtensionKeys: RelativeTimeFormat.relevantExtensionKeys,
|
|
@@ -25,11 +25,11 @@ var RelativeTimeFormat = /** @class */ (function () {
|
|
|
25
25
|
if (typeof this !== 'object') {
|
|
26
26
|
throw new TypeError('format was called on a non-object');
|
|
27
27
|
}
|
|
28
|
-
var internalSlots = get_internal_slots_1.default(this);
|
|
28
|
+
var internalSlots = (0, get_internal_slots_1.default)(this);
|
|
29
29
|
if (!internalSlots.initializedRelativeTimeFormat) {
|
|
30
30
|
throw new TypeError('format was called on a invalid context');
|
|
31
31
|
}
|
|
32
|
-
return PartitionRelativeTimePattern_1.PartitionRelativeTimePattern(this, Number(value), ecma402_abstract_1.ToString(unit), {
|
|
32
|
+
return (0, PartitionRelativeTimePattern_1.PartitionRelativeTimePattern)(this, Number(value), (0, ecma402_abstract_1.ToString)(unit), {
|
|
33
33
|
getInternalSlots: get_internal_slots_1.default,
|
|
34
34
|
})
|
|
35
35
|
.map(function (el) { return el.value; })
|
|
@@ -39,17 +39,17 @@ var RelativeTimeFormat = /** @class */ (function () {
|
|
|
39
39
|
if (typeof this !== 'object') {
|
|
40
40
|
throw new TypeError('formatToParts was called on a non-object');
|
|
41
41
|
}
|
|
42
|
-
var internalSlots = get_internal_slots_1.default(this);
|
|
42
|
+
var internalSlots = (0, get_internal_slots_1.default)(this);
|
|
43
43
|
if (!internalSlots.initializedRelativeTimeFormat) {
|
|
44
44
|
throw new TypeError('formatToParts was called on a invalid context');
|
|
45
45
|
}
|
|
46
|
-
return PartitionRelativeTimePattern_1.PartitionRelativeTimePattern(this, Number(value), ecma402_abstract_1.ToString(unit), { getInternalSlots: get_internal_slots_1.default });
|
|
46
|
+
return (0, PartitionRelativeTimePattern_1.PartitionRelativeTimePattern)(this, Number(value), (0, ecma402_abstract_1.ToString)(unit), { getInternalSlots: get_internal_slots_1.default });
|
|
47
47
|
};
|
|
48
48
|
RelativeTimeFormat.prototype.resolvedOptions = function () {
|
|
49
49
|
if (typeof this !== 'object') {
|
|
50
50
|
throw new TypeError('resolvedOptions was called on a non-object');
|
|
51
51
|
}
|
|
52
|
-
var internalSlots = get_internal_slots_1.default(this);
|
|
52
|
+
var internalSlots = (0, get_internal_slots_1.default)(this);
|
|
53
53
|
if (!internalSlots.initializedRelativeTimeFormat) {
|
|
54
54
|
throw new TypeError('resolvedOptions was called on a invalid context');
|
|
55
55
|
}
|
|
@@ -62,7 +62,7 @@ var RelativeTimeFormat = /** @class */ (function () {
|
|
|
62
62
|
};
|
|
63
63
|
};
|
|
64
64
|
RelativeTimeFormat.supportedLocalesOf = function (locales, options) {
|
|
65
|
-
return ecma402_abstract_1.SupportedLocales(RelativeTimeFormat.availableLocales, ecma402_abstract_1.CanonicalizeLocaleList(locales), options);
|
|
65
|
+
return (0, ecma402_abstract_1.SupportedLocales)(RelativeTimeFormat.availableLocales, (0, ecma402_abstract_1.CanonicalizeLocaleList)(locales), options);
|
|
66
66
|
};
|
|
67
67
|
RelativeTimeFormat.__addLocaleData = function () {
|
|
68
68
|
var data = [];
|
|
@@ -15,7 +15,7 @@ export function InitializeRelativeTimeFormat(rtf, locales, options, _a) {
|
|
|
15
15
|
'numberingSystem', 'string', undefined, undefined);
|
|
16
16
|
if (numberingSystem !== undefined) {
|
|
17
17
|
if (!NUMBERING_SYSTEM_REGEX.test(numberingSystem)) {
|
|
18
|
-
throw new RangeError("Invalid numbering system "
|
|
18
|
+
throw new RangeError("Invalid numbering system ".concat(numberingSystem));
|
|
19
19
|
}
|
|
20
20
|
}
|
|
21
21
|
opt.nu = numberingSystem;
|
|
@@ -25,7 +25,7 @@ export function InitializeRelativeTimeFormat(rtf, locales, options, _a) {
|
|
|
25
25
|
internalSlots.style = GetOption(opts, 'style', 'string', ['long', 'narrow', 'short'], 'long');
|
|
26
26
|
internalSlots.numeric = GetOption(opts, 'numeric', 'string', ['always', 'auto'], 'always');
|
|
27
27
|
var fields = localeData[r.dataLocale];
|
|
28
|
-
invariant(!!fields, "Missing locale data for "
|
|
28
|
+
invariant(!!fields, "Missing locale data for ".concat(r.dataLocale));
|
|
29
29
|
internalSlots.fields = fields;
|
|
30
30
|
internalSlots.numberFormat = new Intl.NumberFormat(locales);
|
|
31
31
|
internalSlots.pluralRules = new Intl.PluralRules(locales);
|
|
@@ -11,7 +11,7 @@ export function MakePartsList(pattern, unit, parts) {
|
|
|
11
11
|
});
|
|
12
12
|
}
|
|
13
13
|
else {
|
|
14
|
-
invariant(patternPart.type === '0', "Malformed pattern "
|
|
14
|
+
invariant(patternPart.type === '0', "Malformed pattern ".concat(pattern));
|
|
15
15
|
for (var _a = 0, parts_1 = parts; _a < parts_1.length; _a++) {
|
|
16
16
|
var part = parts_1[_a];
|
|
17
17
|
result.push({
|
|
@@ -3,19 +3,19 @@ import { SingularRelativeTimeUnit } from './SingularRelativeTimeUnit';
|
|
|
3
3
|
import { MakePartsList } from './MakePartsList';
|
|
4
4
|
export function PartitionRelativeTimePattern(rtf, value, unit, _a) {
|
|
5
5
|
var getInternalSlots = _a.getInternalSlots;
|
|
6
|
-
invariant(Type(value) === 'Number', "value must be number, instead got "
|
|
7
|
-
invariant(Type(unit) === 'String', "unit must be number, instead got "
|
|
6
|
+
invariant(Type(value) === 'Number', "value must be number, instead got ".concat(typeof value), TypeError);
|
|
7
|
+
invariant(Type(unit) === 'String', "unit must be number, instead got ".concat(typeof value), TypeError);
|
|
8
8
|
if (isNaN(value) || !isFinite(value)) {
|
|
9
|
-
throw new RangeError("Invalid value "
|
|
9
|
+
throw new RangeError("Invalid value ".concat(value));
|
|
10
10
|
}
|
|
11
11
|
var resolvedUnit = SingularRelativeTimeUnit(unit);
|
|
12
12
|
var _b = getInternalSlots(rtf), fields = _b.fields, style = _b.style, numeric = _b.numeric, pluralRules = _b.pluralRules, numberFormat = _b.numberFormat;
|
|
13
13
|
var entry = resolvedUnit;
|
|
14
14
|
if (style === 'short') {
|
|
15
|
-
entry = resolvedUnit
|
|
15
|
+
entry = "".concat(resolvedUnit, "-short");
|
|
16
16
|
}
|
|
17
17
|
else if (style === 'narrow') {
|
|
18
|
-
entry = resolvedUnit
|
|
18
|
+
entry = "".concat(resolvedUnit, "-narrow");
|
|
19
19
|
}
|
|
20
20
|
if (!(entry in fields)) {
|
|
21
21
|
entry = resolvedUnit;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"should-polyfill.d.ts","sourceRoot":"","sources":["../../../../../../packages/intl-relativetimeformat/should-polyfill.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"should-polyfill.d.ts","sourceRoot":"","sources":["../../../../../../packages/intl-relativetimeformat/should-polyfill.ts"],"names":[],"mappings":"AAwBA,wBAAgB,cAAc,CAAC,MAAM,CAAC,EAAE,MAAM,GAAG,MAAM,EAAE,WAMxD"}
|
package/lib/should-polyfill.js
CHANGED
|
@@ -6,6 +6,19 @@ function supportedLocalesOf(locale) {
|
|
|
6
6
|
return (Intl.RelativeTimeFormat.supportedLocalesOf(locales).length ===
|
|
7
7
|
locales.length);
|
|
8
8
|
}
|
|
9
|
+
function hasResolvedOptionsNumberingSystem(locale) {
|
|
10
|
+
try {
|
|
11
|
+
return ('numberingSystem' in
|
|
12
|
+
new Intl.RelativeTimeFormat(locale || 'en', {
|
|
13
|
+
numeric: 'auto',
|
|
14
|
+
}).resolvedOptions());
|
|
15
|
+
}
|
|
16
|
+
catch (_) {
|
|
17
|
+
return false;
|
|
18
|
+
}
|
|
19
|
+
}
|
|
9
20
|
export function shouldPolyfill(locale) {
|
|
10
|
-
return !('RelativeTimeFormat' in Intl) ||
|
|
21
|
+
return (!('RelativeTimeFormat' in Intl) ||
|
|
22
|
+
!supportedLocalesOf(locale) ||
|
|
23
|
+
!hasResolvedOptionsNumberingSystem(locale));
|
|
11
24
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@formatjs/intl-relativetimeformat",
|
|
3
|
-
"version": "9.
|
|
3
|
+
"version": "9.3.3",
|
|
4
4
|
"description": "Formats JavaScript dates to relative time strings.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"intl",
|
|
@@ -20,8 +20,8 @@
|
|
|
20
20
|
"url": "git@github.com:formatjs/formatjs.git"
|
|
21
21
|
},
|
|
22
22
|
"dependencies": {
|
|
23
|
-
"@formatjs/ecma402-abstract": "1.
|
|
24
|
-
"@formatjs/intl-localematcher": "0.2.
|
|
23
|
+
"@formatjs/ecma402-abstract": "1.11.0",
|
|
24
|
+
"@formatjs/intl-localematcher": "0.2.21",
|
|
25
25
|
"tslib": "^2.1.0"
|
|
26
26
|
},
|
|
27
27
|
"main": "index.js",
|
package/polyfill-force.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
var tslib_1 = require("tslib");
|
|
4
|
-
var _1 = tslib_1.__importDefault(require("./"));
|
|
4
|
+
var _1 = (0, tslib_1.__importDefault)(require("./"));
|
|
5
5
|
Object.defineProperty(Intl, 'RelativeTimeFormat', {
|
|
6
6
|
value: _1.default,
|
|
7
7
|
writable: true,
|
package/polyfill.iife.js
CHANGED
|
@@ -6,11 +6,11 @@
|
|
|
6
6
|
var __getProtoOf = Object.getPrototypeOf;
|
|
7
7
|
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
8
8
|
var __markAsModule = function(target) {
|
|
9
|
-
return __defProp(target, "__esModule", {value: true});
|
|
9
|
+
return __defProp(target, "__esModule", { value: true });
|
|
10
10
|
};
|
|
11
11
|
var __commonJS = function(cb, mod) {
|
|
12
12
|
return function __require() {
|
|
13
|
-
return mod || (0, cb[Object.keys(cb)[0]])((mod = {exports: {}}).exports, mod), mod.exports;
|
|
13
|
+
return mod || (0, cb[Object.keys(cb)[0]])((mod = { exports: {} }).exports, mod), mod.exports;
|
|
14
14
|
};
|
|
15
15
|
};
|
|
16
16
|
var __reExport = function(target, module, desc) {
|
|
@@ -18,23 +18,23 @@
|
|
|
18
18
|
for (var keys = __getOwnPropNames(module), i = 0, n = keys.length, key; i < n; i++) {
|
|
19
19
|
key = keys[i];
|
|
20
20
|
if (!__hasOwnProp.call(target, key) && key !== "default")
|
|
21
|
-
__defProp(target, key, {get: function(k) {
|
|
21
|
+
__defProp(target, key, { get: function(k) {
|
|
22
22
|
return module[k];
|
|
23
|
-
}.bind(null, key), enumerable: !(desc = __getOwnPropDesc(module, key)) || desc.enumerable});
|
|
23
|
+
}.bind(null, key), enumerable: !(desc = __getOwnPropDesc(module, key)) || desc.enumerable });
|
|
24
24
|
}
|
|
25
25
|
return target;
|
|
26
26
|
};
|
|
27
27
|
var __toModule = function(module) {
|
|
28
|
-
return __reExport(__markAsModule(__defProp(module != null ? __create(__getProtoOf(module)) : {}, "default", module && module.__esModule && "default" in module ? {get: function() {
|
|
28
|
+
return __reExport(__markAsModule(__defProp(module != null ? __create(__getProtoOf(module)) : {}, "default", module && module.__esModule && "default" in module ? { get: function() {
|
|
29
29
|
return module.default;
|
|
30
|
-
}, enumerable: true} : {value: module, enumerable: true})), module);
|
|
30
|
+
}, enumerable: true } : { value: module, enumerable: true })), module);
|
|
31
31
|
};
|
|
32
32
|
|
|
33
33
|
// bazel-out/darwin-fastbuild/bin/packages/intl-localematcher/abstract/utils.js
|
|
34
34
|
var require_utils = __commonJS({
|
|
35
35
|
"bazel-out/darwin-fastbuild/bin/packages/intl-localematcher/abstract/utils.js": function(exports) {
|
|
36
36
|
"use strict";
|
|
37
|
-
Object.defineProperty(exports, "__esModule", {value: true});
|
|
37
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
38
38
|
exports.invariant = exports.UNICODE_EXTENSION_SEQUENCE_REGEX = void 0;
|
|
39
39
|
exports.UNICODE_EXTENSION_SEQUENCE_REGEX = /-u(?:-[0-9a-z]{2,8})+/gi;
|
|
40
40
|
function invariant2(condition, message, Err) {
|
|
@@ -53,7 +53,7 @@
|
|
|
53
53
|
var require_BestAvailableLocale = __commonJS({
|
|
54
54
|
"bazel-out/darwin-fastbuild/bin/packages/intl-localematcher/abstract/BestAvailableLocale.js": function(exports) {
|
|
55
55
|
"use strict";
|
|
56
|
-
Object.defineProperty(exports, "__esModule", {value: true});
|
|
56
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
57
57
|
exports.BestAvailableLocale = void 0;
|
|
58
58
|
function BestAvailableLocale(availableLocales, locale) {
|
|
59
59
|
var candidate = locale;
|
|
@@ -79,16 +79,16 @@
|
|
|
79
79
|
var require_LookupMatcher = __commonJS({
|
|
80
80
|
"bazel-out/darwin-fastbuild/bin/packages/intl-localematcher/abstract/LookupMatcher.js": function(exports) {
|
|
81
81
|
"use strict";
|
|
82
|
-
Object.defineProperty(exports, "__esModule", {value: true});
|
|
82
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
83
83
|
exports.LookupMatcher = void 0;
|
|
84
84
|
var utils_1 = require_utils();
|
|
85
85
|
var BestAvailableLocale_1 = require_BestAvailableLocale();
|
|
86
86
|
function LookupMatcher(availableLocales, requestedLocales, getDefaultLocale) {
|
|
87
|
-
var result = {locale: ""};
|
|
87
|
+
var result = { locale: "" };
|
|
88
88
|
for (var _i = 0, requestedLocales_1 = requestedLocales; _i < requestedLocales_1.length; _i++) {
|
|
89
89
|
var locale = requestedLocales_1[_i];
|
|
90
90
|
var noExtensionLocale = locale.replace(utils_1.UNICODE_EXTENSION_SEQUENCE_REGEX, "");
|
|
91
|
-
var availableLocale = BestAvailableLocale_1.BestAvailableLocale(availableLocales, noExtensionLocale);
|
|
91
|
+
var availableLocale = (0, BestAvailableLocale_1.BestAvailableLocale)(availableLocales, noExtensionLocale);
|
|
92
92
|
if (availableLocale) {
|
|
93
93
|
result.locale = availableLocale;
|
|
94
94
|
if (locale !== noExtensionLocale) {
|
|
@@ -108,7 +108,7 @@
|
|
|
108
108
|
var require_BestFitMatcher = __commonJS({
|
|
109
109
|
"bazel-out/darwin-fastbuild/bin/packages/intl-localematcher/abstract/BestFitMatcher.js": function(exports) {
|
|
110
110
|
"use strict";
|
|
111
|
-
Object.defineProperty(exports, "__esModule", {value: true});
|
|
111
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
112
112
|
exports.BestFitMatcher = void 0;
|
|
113
113
|
var BestAvailableLocale_1 = require_BestAvailableLocale();
|
|
114
114
|
var utils_1 = require_utils();
|
|
@@ -145,7 +145,7 @@
|
|
|
145
145
|
foundLocale = minimizedRequestedLocale;
|
|
146
146
|
break;
|
|
147
147
|
}
|
|
148
|
-
foundLocale = BestAvailableLocale_1.BestAvailableLocale(minimizedAvailableLocales, maximizedRequestedLocale);
|
|
148
|
+
foundLocale = (0, BestAvailableLocale_1.BestAvailableLocale)(minimizedAvailableLocales, maximizedRequestedLocale);
|
|
149
149
|
}
|
|
150
150
|
return {
|
|
151
151
|
locale: foundLocale && minimizedAvailableLocaleMap[foundLocale] || getDefaultLocale()
|
|
@@ -159,13 +159,13 @@
|
|
|
159
159
|
var require_UnicodeExtensionValue = __commonJS({
|
|
160
160
|
"bazel-out/darwin-fastbuild/bin/packages/intl-localematcher/abstract/UnicodeExtensionValue.js": function(exports) {
|
|
161
161
|
"use strict";
|
|
162
|
-
Object.defineProperty(exports, "__esModule", {value: true});
|
|
162
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
163
163
|
exports.UnicodeExtensionValue = void 0;
|
|
164
164
|
var utils_1 = require_utils();
|
|
165
165
|
function UnicodeExtensionValue(extension, key) {
|
|
166
|
-
utils_1.invariant(key.length === 2, "key must have 2 elements");
|
|
166
|
+
(0, utils_1.invariant)(key.length === 2, "key must have 2 elements");
|
|
167
167
|
var size = extension.length;
|
|
168
|
-
var searchValue = "-"
|
|
168
|
+
var searchValue = "-".concat(key, "-");
|
|
169
169
|
var pos = extension.indexOf(searchValue);
|
|
170
170
|
if (pos !== -1) {
|
|
171
171
|
var start = pos + 4;
|
|
@@ -192,7 +192,7 @@
|
|
|
192
192
|
}
|
|
193
193
|
return extension.slice(start, end);
|
|
194
194
|
}
|
|
195
|
-
searchValue = "-"
|
|
195
|
+
searchValue = "-".concat(key);
|
|
196
196
|
pos = extension.indexOf(searchValue);
|
|
197
197
|
if (pos !== -1 && pos + 3 === size) {
|
|
198
198
|
return "";
|
|
@@ -207,7 +207,7 @@
|
|
|
207
207
|
var require_ResolveLocale = __commonJS({
|
|
208
208
|
"bazel-out/darwin-fastbuild/bin/packages/intl-localematcher/abstract/ResolveLocale.js": function(exports) {
|
|
209
209
|
"use strict";
|
|
210
|
-
Object.defineProperty(exports, "__esModule", {value: true});
|
|
210
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
211
211
|
exports.ResolveLocale = void 0;
|
|
212
212
|
var LookupMatcher_1 = require_LookupMatcher();
|
|
213
213
|
var BestFitMatcher_1 = require_BestFitMatcher();
|
|
@@ -217,40 +217,40 @@
|
|
|
217
217
|
var matcher = options.localeMatcher;
|
|
218
218
|
var r;
|
|
219
219
|
if (matcher === "lookup") {
|
|
220
|
-
r = LookupMatcher_1.LookupMatcher(availableLocales, requestedLocales, getDefaultLocale);
|
|
220
|
+
r = (0, LookupMatcher_1.LookupMatcher)(availableLocales, requestedLocales, getDefaultLocale);
|
|
221
221
|
} else {
|
|
222
|
-
r = BestFitMatcher_1.BestFitMatcher(availableLocales, requestedLocales, getDefaultLocale);
|
|
222
|
+
r = (0, BestFitMatcher_1.BestFitMatcher)(availableLocales, requestedLocales, getDefaultLocale);
|
|
223
223
|
}
|
|
224
224
|
var foundLocale = r.locale;
|
|
225
|
-
var result = {locale: "", dataLocale: foundLocale};
|
|
225
|
+
var result = { locale: "", dataLocale: foundLocale };
|
|
226
226
|
var supportedExtension = "-u";
|
|
227
227
|
for (var _i = 0, relevantExtensionKeys_1 = relevantExtensionKeys; _i < relevantExtensionKeys_1.length; _i++) {
|
|
228
228
|
var key = relevantExtensionKeys_1[_i];
|
|
229
|
-
utils_1.invariant(foundLocale in localeData, "Missing locale data for "
|
|
229
|
+
(0, utils_1.invariant)(foundLocale in localeData, "Missing locale data for ".concat(foundLocale));
|
|
230
230
|
var foundLocaleData = localeData[foundLocale];
|
|
231
|
-
utils_1.invariant(typeof foundLocaleData === "object" && foundLocaleData !== null, "locale data "
|
|
231
|
+
(0, utils_1.invariant)(typeof foundLocaleData === "object" && foundLocaleData !== null, "locale data ".concat(key, " must be an object"));
|
|
232
232
|
var keyLocaleData = foundLocaleData[key];
|
|
233
|
-
utils_1.invariant(Array.isArray(keyLocaleData), "keyLocaleData for "
|
|
233
|
+
(0, utils_1.invariant)(Array.isArray(keyLocaleData), "keyLocaleData for ".concat(key, " must be an array"));
|
|
234
234
|
var value = keyLocaleData[0];
|
|
235
|
-
utils_1.invariant(typeof value === "string" || value === null, "value must be string or null but got "
|
|
235
|
+
(0, utils_1.invariant)(typeof value === "string" || value === null, "value must be string or null but got ".concat(typeof value, " in key ").concat(key));
|
|
236
236
|
var supportedExtensionAddition = "";
|
|
237
237
|
if (r.extension) {
|
|
238
|
-
var requestedValue = UnicodeExtensionValue_1.UnicodeExtensionValue(r.extension, key);
|
|
238
|
+
var requestedValue = (0, UnicodeExtensionValue_1.UnicodeExtensionValue)(r.extension, key);
|
|
239
239
|
if (requestedValue !== void 0) {
|
|
240
240
|
if (requestedValue !== "") {
|
|
241
241
|
if (~keyLocaleData.indexOf(requestedValue)) {
|
|
242
242
|
value = requestedValue;
|
|
243
|
-
supportedExtensionAddition = "-"
|
|
243
|
+
supportedExtensionAddition = "-".concat(key, "-").concat(value);
|
|
244
244
|
}
|
|
245
245
|
} else if (~requestedValue.indexOf("true")) {
|
|
246
246
|
value = "true";
|
|
247
|
-
supportedExtensionAddition = "-"
|
|
247
|
+
supportedExtensionAddition = "-".concat(key);
|
|
248
248
|
}
|
|
249
249
|
}
|
|
250
250
|
}
|
|
251
251
|
if (key in options) {
|
|
252
252
|
var optionsValue = options[key];
|
|
253
|
-
utils_1.invariant(typeof optionsValue === "string" || typeof optionsValue === "undefined" || optionsValue === null, "optionsValue must be String, Undefined or Null");
|
|
253
|
+
(0, utils_1.invariant)(typeof optionsValue === "string" || typeof optionsValue === "undefined" || optionsValue === null, "optionsValue must be String, Undefined or Null");
|
|
254
254
|
if (~keyLocaleData.indexOf(optionsValue)) {
|
|
255
255
|
if (optionsValue !== value) {
|
|
256
256
|
value = optionsValue;
|
|
@@ -283,7 +283,7 @@
|
|
|
283
283
|
var require_LookupSupportedLocales = __commonJS({
|
|
284
284
|
"bazel-out/darwin-fastbuild/bin/packages/intl-localematcher/abstract/LookupSupportedLocales.js": function(exports) {
|
|
285
285
|
"use strict";
|
|
286
|
-
Object.defineProperty(exports, "__esModule", {value: true});
|
|
286
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
287
287
|
exports.LookupSupportedLocales = void 0;
|
|
288
288
|
var utils_1 = require_utils();
|
|
289
289
|
var BestAvailableLocale_1 = require_BestAvailableLocale();
|
|
@@ -292,7 +292,7 @@
|
|
|
292
292
|
for (var _i = 0, requestedLocales_1 = requestedLocales; _i < requestedLocales_1.length; _i++) {
|
|
293
293
|
var locale = requestedLocales_1[_i];
|
|
294
294
|
var noExtensionLocale = locale.replace(utils_1.UNICODE_EXTENSION_SEQUENCE_REGEX, "");
|
|
295
|
-
var availableLocale = BestAvailableLocale_1.BestAvailableLocale(availableLocales, noExtensionLocale);
|
|
295
|
+
var availableLocale = (0, BestAvailableLocale_1.BestAvailableLocale)(availableLocales, noExtensionLocale);
|
|
296
296
|
if (availableLocale) {
|
|
297
297
|
subset.push(availableLocale);
|
|
298
298
|
}
|
|
@@ -307,7 +307,7 @@
|
|
|
307
307
|
var require_intl_localematcher = __commonJS({
|
|
308
308
|
"bazel-out/darwin-fastbuild/bin/packages/intl-localematcher/index.js": function(exports) {
|
|
309
309
|
"use strict";
|
|
310
|
-
Object.defineProperty(exports, "__esModule", {value: true});
|
|
310
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
311
311
|
exports.ResolveLocale = exports.LookupSupportedLocales = exports.match = void 0;
|
|
312
312
|
var ResolveLocale_1 = require_ResolveLocale();
|
|
313
313
|
function match(requestedLocales, availableLocales, defaultLocale, opts) {
|
|
@@ -315,7 +315,7 @@
|
|
|
315
315
|
all.add(l);
|
|
316
316
|
return all;
|
|
317
317
|
}, new Set());
|
|
318
|
-
return ResolveLocale_1.ResolveLocale(locales, requestedLocales, {
|
|
318
|
+
return (0, ResolveLocale_1.ResolveLocale)(locales, requestedLocales, {
|
|
319
319
|
localeMatcher: (opts === null || opts === void 0 ? void 0 : opts.algorithm) || "best fit"
|
|
320
320
|
}, [], {}, function() {
|
|
321
321
|
return defaultLocale;
|
|
@@ -323,13 +323,13 @@
|
|
|
323
323
|
}
|
|
324
324
|
exports.match = match;
|
|
325
325
|
var LookupSupportedLocales_1 = require_LookupSupportedLocales();
|
|
326
|
-
Object.defineProperty(exports, "LookupSupportedLocales", {enumerable: true, get: function() {
|
|
326
|
+
Object.defineProperty(exports, "LookupSupportedLocales", { enumerable: true, get: function() {
|
|
327
327
|
return LookupSupportedLocales_1.LookupSupportedLocales;
|
|
328
|
-
}});
|
|
328
|
+
} });
|
|
329
329
|
var ResolveLocale_2 = require_ResolveLocale();
|
|
330
|
-
Object.defineProperty(exports, "ResolveLocale", {enumerable: true, get: function() {
|
|
330
|
+
Object.defineProperty(exports, "ResolveLocale", { enumerable: true, get: function() {
|
|
331
331
|
return ResolveLocale_2.ResolveLocale;
|
|
332
|
-
}});
|
|
332
|
+
} });
|
|
333
333
|
}
|
|
334
334
|
});
|
|
335
335
|
|
|
@@ -419,7 +419,7 @@
|
|
|
419
419
|
if (values !== void 0 && !values.filter(function(val) {
|
|
420
420
|
return val == value;
|
|
421
421
|
}).length) {
|
|
422
|
-
throw new RangeError(value
|
|
422
|
+
throw new RangeError("".concat(value, " is not within ").concat(values.join(", ")));
|
|
423
423
|
}
|
|
424
424
|
return value;
|
|
425
425
|
}
|
|
@@ -491,8 +491,8 @@
|
|
|
491
491
|
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]/;
|
|
492
492
|
|
|
493
493
|
// bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/NumberFormat/format_to_parts.js
|
|
494
|
-
var CARET_S_UNICODE_REGEX = new RegExp("^"
|
|
495
|
-
var S_DOLLAR_UNICODE_REGEX = new RegExp(S_UNICODE_REGEX.source
|
|
494
|
+
var CARET_S_UNICODE_REGEX = new RegExp("^".concat(S_UNICODE_REGEX.source));
|
|
495
|
+
var S_DOLLAR_UNICODE_REGEX = new RegExp("".concat(S_UNICODE_REGEX.source, "$"));
|
|
496
496
|
|
|
497
497
|
// bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/NumberFormat/InitializeNumberFormat.js
|
|
498
498
|
var import_intl_localematcher = __toModule(require_intl_localematcher());
|
|
@@ -506,7 +506,7 @@
|
|
|
506
506
|
var length = pattern.length;
|
|
507
507
|
while (beginIndex < pattern.length && beginIndex > -1) {
|
|
508
508
|
endIndex = pattern.indexOf("}", beginIndex);
|
|
509
|
-
invariant(endIndex > beginIndex, "Invalid pattern "
|
|
509
|
+
invariant(endIndex > beginIndex, "Invalid pattern ".concat(pattern));
|
|
510
510
|
if (beginIndex > nextIndex) {
|
|
511
511
|
result.push({
|
|
512
512
|
type: "literal",
|
|
@@ -545,7 +545,7 @@
|
|
|
545
545
|
|
|
546
546
|
// node_modules/tslib/tslib.es6.js
|
|
547
547
|
var extendStatics = function(d, b) {
|
|
548
|
-
extendStatics = Object.setPrototypeOf || {__proto__: []} instanceof Array && function(d2, b2) {
|
|
548
|
+
extendStatics = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function(d2, b2) {
|
|
549
549
|
d2.__proto__ = b2;
|
|
550
550
|
} || function(d2, b2) {
|
|
551
551
|
for (var p in b2)
|
|
@@ -598,7 +598,7 @@
|
|
|
598
598
|
var numberingSystem = GetOption(opts, "numberingSystem", "string", void 0, void 0);
|
|
599
599
|
if (numberingSystem !== void 0) {
|
|
600
600
|
if (!NUMBERING_SYSTEM_REGEX.test(numberingSystem)) {
|
|
601
|
-
throw new RangeError("Invalid numbering system "
|
|
601
|
+
throw new RangeError("Invalid numbering system ".concat(numberingSystem));
|
|
602
602
|
}
|
|
603
603
|
}
|
|
604
604
|
opt.nu = numberingSystem;
|
|
@@ -608,7 +608,7 @@
|
|
|
608
608
|
internalSlots.style = GetOption(opts, "style", "string", ["long", "narrow", "short"], "long");
|
|
609
609
|
internalSlots.numeric = GetOption(opts, "numeric", "string", ["always", "auto"], "always");
|
|
610
610
|
var fields = localeData[r.dataLocale];
|
|
611
|
-
invariant(!!fields, "Missing locale data for "
|
|
611
|
+
invariant(!!fields, "Missing locale data for ".concat(r.dataLocale));
|
|
612
612
|
internalSlots.fields = fields;
|
|
613
613
|
internalSlots.numberFormat = new Intl.NumberFormat(locales);
|
|
614
614
|
internalSlots.pluralRules = new Intl.PluralRules(locales);
|
|
@@ -653,7 +653,7 @@
|
|
|
653
653
|
value: patternPart.value
|
|
654
654
|
});
|
|
655
655
|
} else {
|
|
656
|
-
invariant(patternPart.type === "0", "Malformed pattern "
|
|
656
|
+
invariant(patternPart.type === "0", "Malformed pattern ".concat(pattern));
|
|
657
657
|
for (var _a = 0, parts_1 = parts; _a < parts_1.length; _a++) {
|
|
658
658
|
var part = parts_1[_a];
|
|
659
659
|
result.push({
|
|
@@ -670,18 +670,18 @@
|
|
|
670
670
|
// bazel-out/darwin-fastbuild/bin/packages/intl-relativetimeformat/lib/abstract/PartitionRelativeTimePattern.js
|
|
671
671
|
function PartitionRelativeTimePattern(rtf, value, unit, _a) {
|
|
672
672
|
var getInternalSlots2 = _a.getInternalSlots;
|
|
673
|
-
invariant(Type(value) === "Number", "value must be number, instead got "
|
|
674
|
-
invariant(Type(unit) === "String", "unit must be number, instead got "
|
|
673
|
+
invariant(Type(value) === "Number", "value must be number, instead got ".concat(typeof value), TypeError);
|
|
674
|
+
invariant(Type(unit) === "String", "unit must be number, instead got ".concat(typeof value), TypeError);
|
|
675
675
|
if (isNaN(value) || !isFinite(value)) {
|
|
676
|
-
throw new RangeError("Invalid value "
|
|
676
|
+
throw new RangeError("Invalid value ".concat(value));
|
|
677
677
|
}
|
|
678
678
|
var resolvedUnit = SingularRelativeTimeUnit(unit);
|
|
679
679
|
var _b = getInternalSlots2(rtf), fields = _b.fields, style = _b.style, numeric = _b.numeric, pluralRules = _b.pluralRules, numberFormat = _b.numberFormat;
|
|
680
680
|
var entry = resolvedUnit;
|
|
681
681
|
if (style === "short") {
|
|
682
|
-
entry = resolvedUnit
|
|
682
|
+
entry = "".concat(resolvedUnit, "-short");
|
|
683
683
|
} else if (style === "narrow") {
|
|
684
|
-
entry = resolvedUnit
|
|
684
|
+
entry = "".concat(resolvedUnit, "-narrow");
|
|
685
685
|
}
|
|
686
686
|
if (!(entry in fields)) {
|
|
687
687
|
entry = resolvedUnit;
|
|
@@ -762,7 +762,7 @@
|
|
|
762
762
|
if (!internalSlots.initializedRelativeTimeFormat) {
|
|
763
763
|
throw new TypeError("formatToParts was called on a invalid context");
|
|
764
764
|
}
|
|
765
|
-
return PartitionRelativeTimePattern(this, Number(value), ToString(unit), {getInternalSlots: getInternalSlots});
|
|
765
|
+
return PartitionRelativeTimePattern(this, Number(value), ToString(unit), { getInternalSlots: getInternalSlots });
|
|
766
766
|
};
|
|
767
767
|
RelativeTimeFormat2.prototype.resolvedOptions = function() {
|
|
768
768
|
if (typeof this !== "object") {
|
|
@@ -841,8 +841,17 @@
|
|
|
841
841
|
var locales = Array.isArray(locale) ? locale : [locale];
|
|
842
842
|
return Intl.RelativeTimeFormat.supportedLocalesOf(locales).length === locales.length;
|
|
843
843
|
}
|
|
844
|
+
function hasResolvedOptionsNumberingSystem(locale) {
|
|
845
|
+
try {
|
|
846
|
+
return "numberingSystem" in new Intl.RelativeTimeFormat(locale || "en", {
|
|
847
|
+
numeric: "auto"
|
|
848
|
+
}).resolvedOptions();
|
|
849
|
+
} catch (_) {
|
|
850
|
+
return false;
|
|
851
|
+
}
|
|
852
|
+
}
|
|
844
853
|
function shouldPolyfill(locale) {
|
|
845
|
-
return !("RelativeTimeFormat" in Intl) || !supportedLocalesOf(locale);
|
|
854
|
+
return !("RelativeTimeFormat" in Intl) || !supportedLocalesOf(locale) || !hasResolvedOptionsNumberingSystem(locale);
|
|
846
855
|
}
|
|
847
856
|
|
|
848
857
|
// bazel-out/darwin-fastbuild/bin/packages/intl-relativetimeformat/lib/polyfill.js
|
package/polyfill.js
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
var tslib_1 = require("tslib");
|
|
4
|
-
var _1 = tslib_1.__importDefault(require("./"));
|
|
4
|
+
var _1 = (0, tslib_1.__importDefault)(require("./"));
|
|
5
5
|
var should_polyfill_1 = require("./should-polyfill");
|
|
6
|
-
if (should_polyfill_1.shouldPolyfill()) {
|
|
6
|
+
if ((0, should_polyfill_1.shouldPolyfill)()) {
|
|
7
7
|
Object.defineProperty(Intl, 'RelativeTimeFormat', {
|
|
8
8
|
value: _1.default,
|
|
9
9
|
writable: true,
|
package/should-polyfill.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"should-polyfill.d.ts","sourceRoot":"","sources":["../../../../../packages/intl-relativetimeformat/should-polyfill.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"should-polyfill.d.ts","sourceRoot":"","sources":["../../../../../packages/intl-relativetimeformat/should-polyfill.ts"],"names":[],"mappings":"AAwBA,wBAAgB,cAAc,CAAC,MAAM,CAAC,EAAE,MAAM,GAAG,MAAM,EAAE,WAMxD"}
|
package/should-polyfill.js
CHANGED
|
@@ -9,7 +9,20 @@ function supportedLocalesOf(locale) {
|
|
|
9
9
|
return (Intl.RelativeTimeFormat.supportedLocalesOf(locales).length ===
|
|
10
10
|
locales.length);
|
|
11
11
|
}
|
|
12
|
+
function hasResolvedOptionsNumberingSystem(locale) {
|
|
13
|
+
try {
|
|
14
|
+
return ('numberingSystem' in
|
|
15
|
+
new Intl.RelativeTimeFormat(locale || 'en', {
|
|
16
|
+
numeric: 'auto',
|
|
17
|
+
}).resolvedOptions());
|
|
18
|
+
}
|
|
19
|
+
catch (_) {
|
|
20
|
+
return false;
|
|
21
|
+
}
|
|
22
|
+
}
|
|
12
23
|
function shouldPolyfill(locale) {
|
|
13
|
-
return !('RelativeTimeFormat' in Intl) ||
|
|
24
|
+
return (!('RelativeTimeFormat' in Intl) ||
|
|
25
|
+
!supportedLocalesOf(locale) ||
|
|
26
|
+
!hasResolvedOptionsNumberingSystem(locale));
|
|
14
27
|
}
|
|
15
28
|
exports.shouldPolyfill = shouldPolyfill;
|