adminforth 2.4.0-next.285 → 2.4.0-next.286
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/spa/src/utils.ts +8 -0
- package/package.json +1 -1
package/dist/spa/src/utils.ts
CHANGED
|
@@ -481,3 +481,11 @@ export function checkShowIf(c: AdminForthResourceColumnInputCommon, record: Reco
|
|
|
481
481
|
|
|
482
482
|
return evaluatePredicate(c.showIf);
|
|
483
483
|
}
|
|
484
|
+
|
|
485
|
+
export function btoa_function(source: string): string {
|
|
486
|
+
return btoa(source);
|
|
487
|
+
}
|
|
488
|
+
|
|
489
|
+
export function atob_function(source: string): string {
|
|
490
|
+
return atob(source);
|
|
491
|
+
}
|