File tree Expand file tree Collapse file tree 2 files changed +9
-4
lines changed
packages/runed/src/lib/internal Expand file tree Collapse file tree 2 files changed +9
-4
lines changed Original file line number Diff line number Diff line change
1
+ ---
2
+ " runed " : patch
3
+ ---
4
+
5
+ fix: remove ` PURE ` from global exports
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ export type ConfigurableLocation = {
28
28
location ?: Location ;
29
29
} ;
30
30
31
- export const defaultWindow = /* #__PURE__ */ BROWSER ? window : undefined ;
32
- export const defaultDocument = /* #__PURE__ */ BROWSER ? window . document : undefined ;
33
- export const defaultNavigator = /* #__PURE__ */ BROWSER ? window . navigator : undefined ;
34
- export const defaultLocation = /* #__PURE__ */ BROWSER ? window . location : undefined ;
31
+ export const defaultWindow = BROWSER ? window : undefined ;
32
+ export const defaultDocument = BROWSER ? window . document : undefined ;
33
+ export const defaultNavigator = BROWSER ? window . navigator : undefined ;
34
+ export const defaultLocation = BROWSER ? window . location : undefined ;
You can’t perform that action at this time.
0 commit comments