mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-15 19:26:42 +08:00
10 lines
210 B
TypeScript
10 lines
210 B
TypeScript
export function btoa(stringToEncode: string) {
|
|
if (__ANDROID__) {
|
|
return (<any>org).nativescript.winter_cg.Utils.btoa(stringToEncode);
|
|
}
|
|
|
|
if (__IOS__) {
|
|
return (<any>NSString).btoa(stringToEncode);
|
|
}
|
|
}
|