UNPKG

expo-dev-launcher

Version:

Pre-release version of the Expo development launcher package for testing.

8 lines (6 loc) 309 B
import { Branch } from '../queries/useBranchesForApp'; export function getRecentRuntime(branches: Branch[]) { const recentBranchWithUpdates = branches.find((branch) => branch.updates.length > 0); const recentRuntime = recentBranchWithUpdates?.updates?.[0].runtimeVersion ?? ''; return recentRuntime; }