Skip to content
This repository was archived by the owner on Jul 13, 2020. It is now read-only.

Commit 4437204

Browse files
committed
Merge pull request #211 from stevenvachon/patch-1
add support for environments with both window and global
2 parents 2a5efd5 + 3d73b31 commit 4437204

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/polyfill-wrapper-end.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,4 @@ function __eval(__source, __global, load) {
2626
System.register = __curRegister;
2727
}
2828

29-
})(typeof global !== 'undefined' ? global : this);
29+
})(typeof window == 'undefined' ? global : this);

0 commit comments

Comments
 (0)