frontend/.pnpm-store/v3/files/be/68d275e5ec0b4a1cb8a768999d2165aff1626b5886d8326529824c3ebb1a8cb740e5593f30ef7697e3335ff504c59e6e587f773fc799ae9f162a5d550d8465

27 lines
366 B
Plaintext

"use strict";
function parseHost(urlObj, options)
{
// TWEAK :: condition only for speed optimization
if (options.ignore_www)
{
var host = urlObj.host.full;
if (host)
{
var stripped = host;
if (host.indexOf("www.") === 0)
{
stripped = host.substr(4);
}
urlObj.host.stripped = stripped;
}
}
}
module.exports = parseHost;