UNPKG

expo-updates

Version:

Fetches and manages remotely-hosted assets and updates to your app's JS bundle.

12 lines 287 B
import { Platform } from 'expo-modules-core'; export default { get name() { return 'ExpoUpdates'; }, async reload() { if (!Platform.isDOMAvailable) return; window.location.reload(true); }, }; //# sourceMappingURL=ExpoUpdates.web.js.map