@esri/solution-common 6.5.0-next.20251029 → 6.5.0-next.20251030
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
|
|
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
|
|
860
|
+
return list?.filter(unique) || [];
|
|
861
861
|
}
|
|
862
862
|
// ------------------------------------------------------------------------------------------------------------------ //
|
|
863
863
|
/**
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
Built 10/
|
|
1
|
+
Built 10/30/2025 20:42:15.53
|
|
2
2
|
develop
|
|
3
|
-
commit
|
|
4
|
-
Author:
|
|
5
|
-
Date:
|
|
3
|
+
commit 3f0d09d5b731cedda4df7aabb7a3a2b623f8f4c6
|
|
4
|
+
Author: John Hauck <jhauck@esri.com>
|
|
5
|
+
Date: Thu Oct 30 15:13:41 2025 -0600
|
|
6
6
|
|
|
7
|
-
|
|
7
|
+
update demo
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@esri/solution-common",
|
|
3
|
-
"version": "6.5.0-next.
|
|
3
|
+
"version": "6.5.0-next.20251030",
|
|
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": "
|
|
99
|
+
"gitHead": "3f0d09d5b731cedda4df7aabb7a3a2b623f8f4c6"
|
|
100
100
|
}
|