@esri/solution-common 6.5.0-next.20251029 → 6.5.0-next.20251031

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.
@@ -910,7 +910,7 @@ exports.regExTest = regExTest;
910
910
  * @returns List of unique strings
911
911
  */
912
912
  function uniqueStringList(list) {
913
- return list.filter(hub_common_1.unique);
913
+ return list?.filter(hub_common_1.unique) || [];
914
914
  }
915
915
  exports.uniqueStringList = uniqueStringList;
916
916
  // ------------------------------------------------------------------------------------------------------------------ //
@@ -857,7 +857,7 @@ export function regExTest(v, ex) {
857
857
  * @returns List of unique strings
858
858
  */
859
859
  export function uniqueStringList(list) {
860
- return list.filter(unique);
860
+ return list?.filter(unique) || [];
861
861
  }
862
862
  // ------------------------------------------------------------------------------------------------------------------ //
863
863
  /**
@@ -1,7 +1,7 @@
1
- Built 10/29/2025 20:42:18.73
1
+ Built 10/31/2025 20:42:16.67
2
2
  develop
3
- commit f7f11d8b76daa14b4e0f8d369cf3598163aed061
3
+ commit 995fd43b00e98c72ff3119212f04c5249041aed1
4
4
  Author: Ryan Cosby <ryan9313@esri.com>
5
- Date: Tue Oct 28 20:45:36 2025 -0700
5
+ Date: Thu Oct 30 20:49:16 2025 -0700
6
6
 
7
- v6.5.0-next.20251028
7
+ v6.5.0-next.20251030
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@esri/solution-common",
3
- "version": "6.5.0-next.20251029",
3
+ "version": "6.5.0-next.20251031",
4
4
  "description": "Provides general helper functions for @esri/solution.js.",
5
5
  "main": "dist/cjs/index.js",
6
6
  "module": "dist/esm/index.js",
@@ -96,5 +96,5 @@
96
96
  "esri",
97
97
  "ES6"
98
98
  ],
99
- "gitHead": "f7f11d8b76daa14b4e0f8d369cf3598163aed061"
99
+ "gitHead": "995fd43b00e98c72ff3119212f04c5249041aed1"
100
100
  }