mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
7143d89d81
Summary: This is utility for TurboModule codegen for the purpose of typesafety. It is not used anywhere else at the moment. Reviewed By: cpojer Differential Revision: D15929957 fbshipit-source-id: ecf68cc98b78bc5b9c2078492b853a677b625eea
46 lines
850 B
Plaintext
46 lines
850 B
Plaintext
/**
|
|
* 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 "RCTConvertHelpers.h"
|
|
|
|
#import <React/RCTConvert.h>
|
|
|
|
bool RCTBridgingToBool(id value)
|
|
{
|
|
return [RCTConvert BOOL:value] ? true : false;
|
|
}
|
|
|
|
folly::Optional<bool> RCTBridgingToOptionalBool(id value)
|
|
{
|
|
if (!value) {
|
|
return {};
|
|
}
|
|
return RCTBridgingToBool(value);
|
|
}
|
|
|
|
NSString *RCTBridgingToString(id value)
|
|
{
|
|
return [RCTConvert NSString:value];
|
|
}
|
|
|
|
folly::Optional<double> RCTBridgingToOptionalDouble(id value)
|
|
{
|
|
if (!value) {
|
|
return {};
|
|
}
|
|
return RCTBridgingToDouble(value);
|
|
}
|
|
|
|
double RCTBridgingToDouble(id value)
|
|
{
|
|
return [RCTConvert double:value];
|
|
}
|
|
|
|
NSArray *RCTBridgingToArray(id value) {
|
|
return [RCTConvert NSArray:value];
|
|
}
|