7 lines
148 B
TypeScript
7 lines
148 B
TypeScript
export function replaceWindowLocation(url: string): void {
|
|
if (typeof window === 'undefined') {
|
|
return;
|
|
}
|
|
|
|
window.location.replace(url);
|
|
} |