Files
Schnappix/node_modules/react-native-worklets/apple/worklets/apple/AssertJavaScriptQueue.h
T

15 lines
417 B
Objective-C

#import <react/debug/react_native_assert.h>
// Copied from RCTJSThreadManager.mm
static NSString *const RCTJSThreadName = @"com.facebook.react.runtime.JavaScript";
static BOOL IsJavaScriptQueue()
{
return [NSThread.currentThread.name isEqualToString:RCTJSThreadName];
}
static void AssertJavaScriptQueue()
{
react_native_assert(IsJavaScriptQueue() && "This function must be called on the JavaScript queue");
}