Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

functions.js 309B

12345678910111213
  1. import { NativeModules } from 'react-native';
  2. /**
  3. * Determimes 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. }