UNPKG

@graphql-codegen/cli

Version:

<p align="center"> <img src="https://github.com/dotansimha/graphql-code-generator/blob/master/logo.png?raw=true" /> </p>

13 lines (12 loc) 236 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.isURL = isURL; function isURL(str) { try { const url = new URL(str); return !!url; } catch { return false; } }