"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;
}
},
};