bt-core-app 2.0.39 → 2.0.40
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/bt-core-app.js +1 -1
- package/package.json +1 -1
package/dist/bt-core-app.js
CHANGED
|
@@ -5953,7 +5953,7 @@ function zL(e) {
|
|
|
5953
5953
|
}, Array.isArray(e) ? [] : {});
|
|
5954
5954
|
}
|
|
5955
5955
|
function OL(e, t) {
|
|
5956
|
-
return t == null ? !0 : e == null ? !1 : e.toString().toLowerCase().includes(t.toLowerCase());
|
|
5956
|
+
return t == null ? !0 : e == null ? !1 : e.toString().toLowerCase().replaceAll(" ", "").includes(t.toLowerCase().replaceAll(" ", ""));
|
|
5957
5957
|
}
|
|
5958
5958
|
function m_(e, t = (a) => a) {
|
|
5959
5959
|
if (e == null)
|
package/package.json
CHANGED