export function replaceWindowLocation(url: string): void { if (typeof window === 'undefined') { return; } window.location.replace(url); }