8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eba6280 commit 10814e2Copy full SHA for 10814e2
Libraries/BatchedBridge/MessageQueue.js
@@ -303,12 +303,8 @@ class MessageQueue {
303
__shouldPauseOnThrow() {
304
return (
305
// $FlowFixMe
306
- (typeof DebuggerInternal !== 'undefined' &&
307
- DebuggerInternal.shouldPauseOnThrow === true) || // eslint-disable-line no-undef
308
- // FIXME(festevezga) Remove once T24034309 is rolled out internally
309
- // $FlowFixMe
310
- (typeof __fbUninstallRNGlobalErrorHandler !== 'undefined' &&
311
- __fbUninstallRNGlobalErrorHandler === true) // eslint-disable-line no-undef
+ typeof DebuggerInternal !== 'undefined' &&
+ DebuggerInternal.shouldPauseOnThrow === true // eslint-disable-line no-undef
312
);
313
}
314
0 commit comments