util-helpers 4.23.1 → 4.23.2
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/dist/util-helpers.js +2 -7
- package/dist/util-helpers.js.map +1 -1
- package/dist/util-helpers.min.js +1 -1
- package/dist/util-helpers.min.js.map +1 -1
- package/esm/VERSION.js +1 -1
- package/esm/index.js +1 -1
- package/lib/VERSION.js +1 -1
- package/lib/index.js +1 -1
- package/package.json +4 -3
package/dist/util-helpers.js
CHANGED
|
@@ -1687,7 +1687,6 @@
|
|
|
1687
1687
|
function stringify(value, replacer) {
|
|
1688
1688
|
return JSON.stringify(value, replacer);
|
|
1689
1689
|
}
|
|
1690
|
-
var inWindow = typeof window !== 'undefined' && typeof window === 'object' && window.window === window;
|
|
1691
1690
|
|
|
1692
1691
|
var cache = {};
|
|
1693
1692
|
var MemoryStorage = /** @class */ (function () {
|
|
@@ -1973,10 +1972,6 @@
|
|
|
1973
1972
|
return Cache;
|
|
1974
1973
|
}(EmitterPro));
|
|
1975
1974
|
|
|
1976
|
-
new Storage(inWindow ? window.localStorage : undefined);
|
|
1977
|
-
|
|
1978
|
-
new Storage(inWindow ? window.sessionStorage : undefined);
|
|
1979
|
-
|
|
1980
1975
|
var AsyncMemo = (function () {
|
|
1981
1976
|
function AsyncMemo(options) {
|
|
1982
1977
|
this.promiseCache = {};
|
|
@@ -2645,9 +2640,9 @@
|
|
|
2645
2640
|
return internalFindTreeSelect(tree, predicate, childrenField);
|
|
2646
2641
|
}
|
|
2647
2642
|
|
|
2648
|
-
var VERSION = "4.23.
|
|
2643
|
+
var VERSION = "4.23.2";
|
|
2649
2644
|
|
|
2650
|
-
var version = "4.23.
|
|
2645
|
+
var version = "4.23.2";
|
|
2651
2646
|
|
|
2652
2647
|
exports.AsyncMemo = AsyncMemo;
|
|
2653
2648
|
exports.VERSION = VERSION;
|