選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

functions.js 309B

12345678910111213
  1. import { NativeModules } from 'react-native';
  2. /**
  3. * Determines if the ExternalAPI native module is available.
  4. *
  5. * @returns {boolean} If yes {@code true} otherwise {@code false}.
  6. */
  7. export function isExternalAPIAvailable() {
  8. const { ExternalAPI } = NativeModules;
  9. return ExternalAPI !== null;
  10. }