We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eeaa9cd commit 0f6dc01Copy full SHA for 0f6dc01
1 file changed
README.md
@@ -88,6 +88,7 @@ thatGlobal.Function !== thisGlobal.Function;
88
thatGlobal.eval('Object.getPrototypeOf(async () => {})') !== Object.getPrototypeOf(async () => {});
89
thatGlobal.eval('Object.getPrototypeOf(function *() {})') !== Object.getPrototypeOf(function *() {});
90
thatGlobal.eval('Object.getPrototypeOf(async function *() {})') !== Object.getPrototypeOf(async function *() {});
91
+const source = new ModuleSource('export default {}');
92
(await thatGlobal.eval('(...args) => import(...args)')(source)) !== (await import(source));
93
thatGlobal.ModuleSource === thisGlobal.ModuleSource;
94
thatGlobal.x === thisGlobal.x;
0 commit comments