Code style fixes
This commit is contained in:
Родитель
0843fc4fa3
Коммит
6f21fb4558
|
@ -1,5 +1,5 @@
|
|||
var parse_host = function(host){
|
||||
if(!tlds){
|
||||
if(typeof tlds === "undefined"){
|
||||
throw new Error('No TLDs!');
|
||||
}
|
||||
|
||||
|
|
|
@ -2,26 +2,7 @@ function processURL(URL, ignoreProtocol, ignoreSubdomain, ignorePath, ignorePort
|
|||
if (URL === null || URL === "") {
|
||||
return URL;
|
||||
}
|
||||
|
||||
var URLobj = null;
|
||||
try {
|
||||
URLobj = new window.URL(URL);
|
||||
}
|
||||
|
||||
catch (err) {
|
||||
if (ignoreProtocol) {
|
||||
try {
|
||||
URLobj = new window.URL("http://" + URL);
|
||||
}
|
||||
catch (err2) {
|
||||
return URL;
|
||||
}
|
||||
}
|
||||
else {
|
||||
return URL;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
var parser = document.createElement('a');
|
||||
parser.href = URL;
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче