import { sanitizeHref } from "./sanitize-href"; export function resolveSafeNavigationHref( ...candidates: Array ): string | undefined { for (const candidate of candidates) { const safeHref = sanitizeHref(candidate ?? undefined); if (safeHref) { return safeHref; } } return undefined; } export function openSafeNavigationHref(href: string | undefined): boolean { if (!href || typeof window === "undefined") { return false; } window.open(href, "_blank", "noopener,noreferrer"); return true; }