UNPKG

jtc-utils

Version:
13 lines (12 loc) 226 B
export function isHttpURL(value) { if (!value) { return false; } try { const url = new URL(value); return /^https?:$/.test(url.protocol); } catch (e) { return false; } }