@firestitch/common 12.5.1 → 12.5.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/bundles/firestitch-common.umd.js +9 -3
- package/bundles/firestitch-common.umd.js.map +1 -1
- package/esm2015/libs/util/index.js +4 -3
- package/esm2015/libs/util/to-string/index.js +2 -0
- package/esm2015/libs/util/to-string/to-string.js +7 -0
- package/esm2015/public_api.js +1 -4
- package/fesm2015/firestitch-common.js +9 -4
- package/fesm2015/firestitch-common.js.map +1 -1
- package/libs/util/index.d.ts +3 -2
- package/libs/util/to-string/index.d.ts +1 -0
- package/libs/util/to-string/to-string.d.ts +1 -0
- package/package.json +1 -1
|
@@ -1743,6 +1743,13 @@
|
|
|
1743
1743
|
return obj;
|
|
1744
1744
|
}
|
|
1745
1745
|
|
|
1746
|
+
function toString(value) {
|
|
1747
|
+
if (value === null || value === undefined) {
|
|
1748
|
+
return '';
|
|
1749
|
+
}
|
|
1750
|
+
return "" + value;
|
|
1751
|
+
}
|
|
1752
|
+
|
|
1746
1753
|
function isArrayEqual(arr1, arr2) {
|
|
1747
1754
|
if (!Array.isArray(arr1) || !Array.isArray(arr2) || arr1.length !== arr2.length) {
|
|
1748
1755
|
return false;
|
|
@@ -2080,9 +2087,7 @@
|
|
|
2080
2087
|
return rxjs.combineLatest(keyCodeEvents$).pipe(operators.filter(function (arr) { return arr.every(function (a) { return a.type === 'keydown'; }); }));
|
|
2081
2088
|
};
|
|
2082
2089
|
|
|
2083
|
-
|
|
2084
|
-
* Public API Surface of fs-menu
|
|
2085
|
-
*/
|
|
2090
|
+
// Modules
|
|
2086
2091
|
|
|
2087
2092
|
/**
|
|
2088
2093
|
* Generated bundle index. Do not edit.
|
|
@@ -2181,6 +2186,7 @@
|
|
|
2181
2186
|
exports.sort = sort;
|
|
2182
2187
|
exports.stringify = stringify;
|
|
2183
2188
|
exports.throttle = throttle;
|
|
2189
|
+
exports.toString = toString;
|
|
2184
2190
|
exports.truncate = truncate;
|
|
2185
2191
|
exports.url = url;
|
|
2186
2192
|
exports.uuid = uuid;
|