UNPKG

react-native-cloud-storage

Version:

☁️ Save to & read from iCloud and Google Drive using React Native

11 lines (10 loc) 309 B
"use strict"; import { CloudStorageProvider } from '../types/main'; import { Platform } from 'react-native'; export const isProviderSupported = provider => { if (Platform.OS !== 'ios' && provider === CloudStorageProvider.ICloud) { return false; } return true; }; //# sourceMappingURL=helpers.js.map