mirror of
https://github.com/streetwriters/notesnook.git
synced 2025-12-22 06:29:29 +01:00
18 lines
385 B
JavaScript
18 lines
385 B
JavaScript
export function extractHostname(url) {
|
|
var hostname;
|
|
//find & remove protocol (http, ftp, etc.) and get hostname
|
|
|
|
if (url.indexOf("//") > -1) {
|
|
hostname = url.split("/")[2];
|
|
} else {
|
|
hostname = url.split("/")[0];
|
|
}
|
|
|
|
//find & remove port number
|
|
// hostname = hostname.split(":")[0];
|
|
//find & remove "?"
|
|
hostname = hostname.split("?")[0];
|
|
|
|
return hostname;
|
|
}
|