UNPKG

165 BJavaScriptView Raw
1/**
2* @flow
3 */
4
5import { NativeModules } from 'react-native';
6
7export default function apisAreAvailable(): boolean {
8 return !!NativeModules.ExponentConstants;
9}