UNPKG

deepinfra

Version:
15 lines (14 loc) 351 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.URLUtils = void 0; exports.URLUtils = { isValidUrl: (urlString) => { try { const url = new URL(urlString); return ["http:", "https:"].includes(url.protocol); } catch { return false; } }, };