UNPKG

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