From 31d18dbd006aa8026ebab780bd7b1bc723c31118 Mon Sep 17 00:00:00 2001 From: Turgay Saba <22500853+sabaturgay@users.noreply.github.com> Date: Wed, 29 May 2024 18:21:07 +0200 Subject: [PATCH] fix(base64): disable base64 utils injections by default --- src/index.ts | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/index.ts b/src/index.ts index a448579..cb41d45 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,9 +1,5 @@ import 'react-native-url-polyfill/auto'; import { NativeModules } from 'react-native'; -import { atob, btoa } from 'react-native-quick-base64'; - -global.atob = atob; -global.btoa = btoa; export { reactiveHooksExtension } from './ReactiveHooksExtension'; export { reactiveQueriesExtension } from './ReactiveQueriesExtension';