UNPKG

expo-dev-launcher

Version:

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

12 lines (8 loc) 184 B
import url from 'url'; export function validateUrl(str: string): boolean { const results = url.parse(str, true); if (!results.protocol) { return false; } return true; }