mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
7e5de4e241
Summary: See title. Changelog: [iOS][Added] - Make RedBox TurboModule-compatible Reviewed By: PeteTheHeat Differential Revision: D18142255 fbshipit-source-id: 2d130aca93a88ac7c983ce0e4848955ffb0be518
23 lines
439 B
Objective-C
23 lines
439 B
Objective-C
/*
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
|
|
#import "RCTRedBoxSetEnabled.h"
|
|
|
|
#if RCT_DEV
|
|
static BOOL redBoxEnabled = YES;
|
|
#else
|
|
static BOOL redBoxEnabled = NO;
|
|
#endif
|
|
|
|
void RCTRedBoxSetEnabled(BOOL enabled) {
|
|
redBoxEnabled = enabled;
|
|
}
|
|
|
|
BOOL RCTRedBoxGetEnabled() {
|
|
return redBoxEnabled;
|
|
}
|