On React-Native, how can I know if \"Debug JS Remotely\"
is enabled?
I tried looking in RN docs and various NPM packages, but couldn\'t find out how...
How to programmatically check if remote debugging is enabled (just found this peculiar behaviour today on another SO question). Tested on RN 0.43 and with Chrome debugger + React Native Debugger :
const isDebuggingEnabled = (typeof atob !== 'undefined');
Edit: just noticed this was asked over half a year ago :D... well, I leave it here for future generations.