This commit is contained in:
eewing
2026-02-17 14:10:16 -06:00
parent 2bca5834c5
commit cf73cd3b4c
11246 changed files with 1690552 additions and 0 deletions
+5
View File
@@ -0,0 +1,5 @@
import { BROWSER } from "esm-env";
export const defaultWindow = BROWSER && typeof window !== "undefined" ? window : undefined;
export const defaultDocument = BROWSER && typeof window !== "undefined" ? window.document : undefined;
export const defaultNavigator = BROWSER && typeof window !== "undefined" ? window.navigator : undefined;
export const defaultLocation = BROWSER && typeof window !== "undefined" ? window.location : undefined;