react-intl 7.1.8 → 7.1.9

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.
@@ -29,7 +29,10 @@ var formatMessage = function (config, formatters, descriptor, rawValues) {
29
29
  formatters,
30
30
  descriptor,
31
31
  values], rest, false));
32
- return toKeyedReactNodeArray(chunks);
32
+ if (Array.isArray(chunks)) {
33
+ return toKeyedReactNodeArray(chunks);
34
+ }
35
+ return chunks;
33
36
  };
34
37
  /**
35
38
  * Create intl object
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "react-intl",
3
3
  "description": "Internationalize React apps. This library provides React components and an API to format dates, numbers, and strings, including pluralization and handling translations.",
4
- "version": "7.1.8",
4
+ "version": "7.1.9",
5
5
  "license": "BSD-3-Clause",
6
6
  "author": "Eric Ferraiuolo <edf@ericf.me>",
7
7
  "sideEffects": false,
@@ -4557,7 +4557,10 @@ var ReactIntl = (() => {
4557
4557
  values,
4558
4558
  ...rest
4559
4559
  );
4560
- return toKeyedReactNodeArray(chunks);
4560
+ if (Array.isArray(chunks)) {
4561
+ return toKeyedReactNodeArray(chunks);
4562
+ }
4563
+ return chunks;
4561
4564
  };
4562
4565
  var createIntl2 = (_a2, cache) => {
4563
4566
  var _b = _a2, { defaultRichTextElements: rawDefaultRichTextElements } = _b, config = __objRest(_b, ["defaultRichTextElements"]);
@@ -32,7 +32,10 @@ var formatMessage = function (config, formatters, descriptor, rawValues) {
32
32
  formatters,
33
33
  descriptor,
34
34
  values], rest, false));
35
- return (0, utils_1.toKeyedReactNodeArray)(chunks);
35
+ if (Array.isArray(chunks)) {
36
+ return (0, utils_1.toKeyedReactNodeArray)(chunks);
37
+ }
38
+ return chunks;
36
39
  };
37
40
  /**
38
41
  * Create intl object