We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0aa0da2 commit a649360Copy full SHA for a649360
index.js
@@ -68,9 +68,9 @@ function getRandomValues (array) {
68
return array
69
}
70
71
-function isRemoteDebuggingInChrome() {
+function isRemoteDebuggingInChrome () {
72
// Remote debugging in Chrome is not supported in bridgeless
73
- if ("RN$Bridgeless" in global && RN$Bridgeless === true) {
+ if ('RN$Bridgeless' in global && RN$Bridgeless === true) {
74
return false
75
76
@@ -83,4 +83,4 @@ if (typeof global.crypto !== 'object') {
83
84
if (typeof global.crypto.getRandomValues !== 'function') {
85
global.crypto.getRandomValues = getRandomValues
86
-}
+}
0 commit comments