Skip to content

Commit 6fc93e1

Browse files
authored
Fix broken window export, causing the function to return itself (#75)
1 parent 093071b commit 6fc93e1

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/Web/HTML.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1-
export function window() {
1+
const windowImpl = function () {
22
return window;
3-
}
3+
};
4+
export { windowImpl as window };

0 commit comments

Comments
 (0)