Files
La-Fabrik/src/utils/debug/isDebugEnabled.ts
T
2026-04-27 10:53:50 +02:00

8 lines
175 B
TypeScript

export function isDebugEnabled(): boolean {
if (typeof window === "undefined") {
return false;
}
return new URLSearchParams(window.location.search).has("debug");
}