12 lines
496 B
JavaScript
12 lines
496 B
JavaScript
"use strict";
|
|
// isEligibleForPrediction
|
|
// https://developer.apple.com/documentation/foundation/nsuseractivity/2980674-iseligibleforprediction
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.ExpoHead = void 0;
|
|
let ExpoHead = null;
|
|
exports.ExpoHead = ExpoHead;
|
|
// If running in Expo Go.
|
|
if (typeof expo !== 'undefined' && !globalThis.expo?.modules?.ExpoGo) {
|
|
exports.ExpoHead = ExpoHead = globalThis.expo?.modules?.ExpoHead;
|
|
}
|
|
//# sourceMappingURL=ExpoHeadModule.js.map
|