UNPKG

expo-updates

Version:

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

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