On React-Native, how can I know if \"Debug JS Remotely\" is enabled?
\"Debug JS Remotely\"
I tried looking in RN docs and various NPM packages, but couldn\'t find out how...
Check __REMOTEDEV__ in a simple way:
__REMOTEDEV__
if(global.__REMOTEDEV__) { console.log('Remote Debug'); }