CrunchyDL/components/Functions/WindowHandler.ts
2024-04-16 20:20:30 +02:00

8 lines
261 B
TypeScript

const isProduction = process.env.NODE_ENV !== 'development'
export function openNewWindow(urlprod: string, urldev: string, w: string) {
const newWindow = window.open(isProduction ? urlprod : urldev, '_blank', w)
if (newWindow) {
newWindow.focus()
}
}