CrunchyDL/components/Functions/WindowHandler.ts
2024-05-01 01:45:45 +02:00

9 lines
272 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()
}
}