expo-updates
Version:
Fetches and manages remotely-hosted assets and updates to your app's JS bundle.
8 lines (7 loc) • 340 B
JavaScript
;
// Types for the options passed into the command
Object.defineProperty(exports, "__esModule", { value: true });
exports.isValidPlatform = exports.validPlatforms = void 0;
exports.validPlatforms = ['android', 'ios'];
const isValidPlatform = (p) => exports.validPlatforms.includes(p);
exports.isValidPlatform = isValidPlatform;