📅  最后修改于: 2022-03-11 15:02:16.406000             🧑  作者: Mango
function isValidHttpUrl(string) {
let url;
try {
url = new URL(string);
} catch (_) {
return false;
}
return url.protocol === "http:" || url.protocol === "https:";
}