Files
SRCmail/lib/browser-navigation.ts
T

7 lines
148 B
TypeScript

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