You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
829 B
13 lines
829 B
import Constants, { ExecutionEnvironment } from 'expo-constants'; // eslint-disable-line no-unused-expressions
|
|
import {
|
|
// React Native's internal InitializeCore module sets up `window` but runs only when its React
|
|
// renderer is loaded. We can cause this by loading one of its dependents.
|
|
findNodeHandle, } from 'react-native';
|
|
import { shouldThrowAnErrorOutsideOfExpo } from './validatorState';
|
|
findNodeHandle; // eslint-disable-line no-unused-expressions
|
|
if (shouldThrowAnErrorOutsideOfExpo() &&
|
|
!Constants?.expoVersion &&
|
|
Constants?.executionEnvironment !== ExecutionEnvironment.Bare) {
|
|
throw new Error(`Expo native runtime is not available: something went wrong and we aren't sure what it was. Please post more information and get support at https://forums.expo.dev.`);
|
|
}
|
|
//# sourceMappingURL=validate.fx.js.map
|