UNPKG

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