bt-core-app 1.4.424 → 1.4.425
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 +2 -2
- package/dist/index.d.ts +1 -1
- package/package.json +1 -1
package/dist/bt-core-app.js
CHANGED
|
@@ -5562,8 +5562,8 @@ function sV(e, t) {
|
|
|
5562
5562
|
return Math.round(e * l) / l;
|
|
5563
5563
|
}
|
|
5564
5564
|
function uV(e, t) {
|
|
5565
|
-
let n =
|
|
5566
|
-
return t != null && (Xw(n, t) ? n = n.split(",").filter((a) => a != t).toString() : n != null ? n = `${n},${t}` : n = t), n != null && n.length > 0 ? n : null;
|
|
5565
|
+
let n = "";
|
|
5566
|
+
return e != null && (Array.isArray(e) ? n = e.toString() : n = e), t != null && (Xw(n, t) ? n = n.split(",").filter((a) => a != t).toString() : n != null ? n = `${n},${t}` : n = t), n != null && n.length > 0 ? n : null;
|
|
5567
5567
|
}
|
|
5568
5568
|
function Xw(e, t) {
|
|
5569
5569
|
if (e == null || e.length == 0)
|
package/dist/index.d.ts
CHANGED
|
@@ -1249,7 +1249,7 @@ export declare function toCamelCase(value: any): any;
|
|
|
1249
1249
|
|
|
1250
1250
|
export declare function toCompareString(str?: string): string | null;
|
|
1251
1251
|
|
|
1252
|
-
export declare function toggleCSV(value?: string, tag?: string): string | null;
|
|
1252
|
+
export declare function toggleCSV(value?: string | string[], tag?: string): string | null;
|
|
1253
1253
|
|
|
1254
1254
|
export declare function twiddleThumbs(mSec?: number): Promise<void>;
|
|
1255
1255
|
|
package/package.json
CHANGED