mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-15 11:01:21 +08:00
10 lines
180 B
TypeScript
10 lines
180 B
TypeScript
export function atob(data: string) {
|
|
if (__ANDROID__) {
|
|
return (<any>org).nativescript.winter_cg.Utils.atob(data);
|
|
}
|
|
|
|
if (__IOS__) {
|
|
return (<any>NSString).atob(data);
|
|
}
|
|
}
|