UNPKG

@graphql-codegen/cli

Version:
10 lines (9 loc) 143 B
export function isURL(str) { try { const url = new URL(str); return !!url; } catch { return false; } }